HomeSort by relevance Sort by last modified time
    Searched refs:mRotationMatrix (Results 1 - 6 of 6) sorted by null

  /development/samples/ApiDemos/src/com/example/android/apis/os/
RotationVectorDemo.java 84 private final float[] mRotationMatrix = new float[16];
93 mRotationMatrix[ 0] = 1;
94 mRotationMatrix[ 4] = 1;
95 mRotationMatrix[ 8] = 1;
96 mRotationMatrix[12] = 1;
118 mRotationMatrix , event.values);
130 gl.glMultMatrixf(mRotationMatrix, 0);
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 45 private final float[] mRotationMatrix = new float[16];
82 Matrix.setRotateM(mRotationMatrix, 0, mAngle, 0, 0, 1.0f);
87 Matrix.multiplyMM(scratch, 0, mMVPMatrix, 0, mRotationMatrix, 0);
  /packages/apps/Camera2/src/com/android/camera/hardware/
HeadingSensor.java 50 private final float[] mRotationMatrix = new float[16];
120 SensorManager.getRotationMatrix(mRotationMatrix, null, mGData, mMData);
121 SensorManager.getOrientation(mRotationMatrix, orientation);
  /platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/helper/
SimpleGLRenderer.java 47 private final float[] mRotationMatrix = new float[16];
84 Matrix.setRotateM(mRotationMatrix, 0, mAngle, 0, 0, 1.0f);
89 Matrix.multiplyMM(scratch, 0, mMVPMatrix, 0, mRotationMatrix, 0);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelView.java 42 private final float[] mRotationMatrix = new float[16];
179 mRotationMatrix , event.values);
182 mRender.onPostureChanged(new Matrix4f(mRotationMatrix));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/
GLArrowSensorTestRenderer.java 47 private final float[] mRotationMatrix = new float[16];
96 gl.glMultMatrixf(mRotationMatrix, 0);
190 SensorManager.AXIS_MINUS_X, SensorManager.AXIS_Y, mRotationMatrix);

Completed in 157 milliseconds