Home
last modified time | relevance | path

Searched refs:mProjMatrix (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/display/
H A DColorFade.java484 mProjMatrix[0] = 2f / (right - left);
485 mProjMatrix[1] = 0;
486 mProjMatrix[2] = 0;
487 mProjMatrix[3] = 0;
488 mProjMatrix[4] = 0;
490 mProjMatrix[6] = 0;
491 mProjMatrix[7] = 0;
492 mProjMatrix[8] = 0;
493 mProjMatrix[9] = 0;
495 mProjMatrix[11] = 0;
[all …]
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLDepthTestActivity.java171 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0); in onDrawFrame()
186 Matrix.frustumM(mProjMatrix, 0, -ratio, ratio, -1, 1, 3, 7); in onSurfaceChanged()
352 private float[] mProjMatrix = new float[16]; field in GLDepthTestActivity.GLES20TriangleRenderer