Home
last modified time | relevance | path

Searched refs:mModelMatrix (Results 1 – 7 of 7) sorted by relevance

/cts/tests/openglperf2/jni/reference/scene/
DScene.cpp30 mModelMatrix = setUpModelMatrix(); in setUpContext()
31 if (mModelMatrix == NULL) { in setUpContext()
56 delete mModelMatrix; in tearDown()
57 mModelMatrix = NULL; in tearDown()
76 mModelMatrix->identity(); in drawSceneGraph()
77 mSceneGraphs[index]->drawProgram(*mModelMatrix, *mViewMatrix, *mProjectionMatrix); in drawSceneGraph()
DScene.h47 Matrix* mModelMatrix;
/cts/tests/openglperf2/jni/primitive/fullpipeline/
DFullPipelineRenderer.cpp96 mModelMatrix(NULL), mViewMatrix(NULL), mProjectionMatrix(NULL), mMesh(NULL), in FullPipelineRenderer()
112 mModelMatrix = new Matrix(); in setUp()
179 delete mModelMatrix; in tearDown()
180 mModelMatrix = NULL; in tearDown()
203 mModelMatrix->identity(); in drawWorkload()
204 mSceneGraph->drawProgram(*mModelMatrix, *mViewMatrix, *mProjectionMatrix); in drawWorkload()
DFullPipelineRenderer.h33 Matrix* mModelMatrix; variable
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
DModelMatrixCalculator.java43 protected float[] mModelMatrix = new float[MATRIX_4X4]; field in ModelMatrixCalculator
59 Matrix.setIdentityM(mModelMatrix, 0); in ModelMatrixCalculator()
127 mModelMatrix = calculateModelMatrix(convertedTranslation, quaternion); in updateModelMatrix()
148 return mModelMatrix; in getModelMatrix()
DConeModelMatrixCalculator.java68 Matrix.multiplyMM(mModelMatrix, 0, translationMatrix, 0, rotationTransformation, 0); in updateModelMatrix()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/
DRenderable.java43 private float[] mModelMatrix = new float[MathsUtils.MATRIX_4X4]; field in Renderable
65 return mModelMatrix; in getModelMatrix()
69 mModelMatrix = modelMatrix; in setModelMatrix()