OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mModelMatrix
(Results
1 - 7
of
7
) sorted by null
/cts/tests/openglperf2/jni/reference/scene/
Scene.cpp
30
mModelMatrix
= setUpModelMatrix();
31
if (
mModelMatrix
== NULL) {
56
delete
mModelMatrix
;
57
mModelMatrix
= NULL;
76
mModelMatrix
->identity();
77
mSceneGraphs[index]->drawProgram(*
mModelMatrix
, *mViewMatrix, *mProjectionMatrix);
Scene.h
47
Matrix*
mModelMatrix
;
/cts/tests/openglperf2/jni/primitive/fullpipeline/
FullPipelineRenderer.cpp
96
mModelMatrix
(NULL), mViewMatrix(NULL), mProjectionMatrix(NULL), mMesh(NULL),
112
mModelMatrix
= new Matrix();
179
delete
mModelMatrix
;
180
mModelMatrix
= NULL;
203
mModelMatrix
->identity();
204
mSceneGraph->drawProgram(*
mModelMatrix
, *mViewMatrix, *mProjectionMatrix);
FullPipelineRenderer.h
33
Matrix*
mModelMatrix
;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/Renderable/
Renderable.java
43
private float[]
mModelMatrix
= new float[MathsUtils.MATRIX_4X4];
65
return
mModelMatrix
;
69
mModelMatrix
= modelMatrix;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
ModelMatrixCalculator.java
43
protected float[]
mModelMatrix
= new float[MATRIX_4X4];
59
Matrix.setIdentityM(
mModelMatrix
, 0);
127
mModelMatrix
= calculateModelMatrix(convertedTranslation, quaternion);
148
return
mModelMatrix
;
ConeModelMatrixCalculator.java
68
Matrix.multiplyMM(
mModelMatrix
, 0, translationMatrix, 0, rotationTransformation, 0);
Completed in 95 milliseconds