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

  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 99 private final float mProjMatrix[] = new float[16];
421 GLES20.glUniformMatrix4fv(mProjMatrixLoc, 1, false, mProjMatrix, 0);
449 mProjMatrix[0] = 2f / (right - left);
450 mProjMatrix[1] = 0;
451 mProjMatrix[2] = 0;
452 mProjMatrix[3] = 0;
453 mProjMatrix[4] = 0;
454 mProjMatrix[5] = 2f / (top - bottom);
455 mProjMatrix[6] = 0;
456 mProjMatrix[7] = 0
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 74 private float[] mProjMatrix = new float[16];
137 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
151 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 117 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
131 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
312 private float[] mProjMatrix = new float[16];
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
GLES20TriangleRenderer.java 77 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
89 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
243 private float[] mProjMatrix = new float[16];
  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
GLES20TriangleRenderer.java 75 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
87 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
241 private float[] mProjMatrix = new float[16];
  /development/ndk/platforms/android-21/samples/native-codec/src/com/example/nativecodec/
MyGLSurfaceView.java 130 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
145 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
328 private float[] mProjMatrix = new float[16];
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
GLDepthTestActivity.java 171 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
186 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
352 private float[] mProjMatrix = new float[16];
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 129 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
143 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
324 private float[] mProjMatrix = new float[16];
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 82 private float[] mProjMatrix = new float[16];
159 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
260 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7);
  /frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
GL2CameraEye.java 222 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
237 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
478 private float[] mProjMatrix = new float[16];
  /cts/tests/camera/src/android/hardware/cts/
CameraGLTest.java 702 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
718 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
    [all...]

Completed in 442 milliseconds