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

  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMeshActivity.java 40 private float[] mVertices;
51 mVertices = new float[] {
72 canvas.drawBitmapMesh(mBitmap1, 3, 3, mVertices, 0, null, 0, null);
75 canvas.drawBitmapMesh(mBitmap1, 3, 3, mVertices, 0, mColors, 0, null);
BitmapMeshLayerActivity.java 41 private float[] mVertices;
52 mVertices = new float[] {
72 canvas.drawBitmapMesh(mBitmap1, 3, 3, mVertices, 0, null, 0, null);
75 canvas.drawBitmapMesh(mBitmap1, 3, 3, mVertices, 0, mColors, 0, null);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 40 private FloatBuffer mVertices;
65 mVertices = ByteBuffer.allocateDirect(nVertices * 5 * FLOAT_SIZE)
98 mVertices.put(vLineBuffer, 0, vLineBuffer.length);
125 mVertices.position(0);
132 return mVertices;
TextureTestRenderer.java 58 private final FloatBuffer mVertices;
67 mVertices = ByteBuffer.allocateDirect(mVerticesData.length
69 mVertices.put(mVerticesData).position(0);
100 gl.glVertexPointer(3, GL10.GL_FLOAT, GEOMETRY_STRIDE, mVertices);
101 gl.glTexCoordPointer(2, GL10.GL_FLOAT, GEOMETRY_STRIDE, mVertices
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
SurfaceTextureRenderer.java 51 private FloatBuffer mVertices;
94 mVertices = ByteBuffer.allocateDirect(mVerticesData.length
96 mVertices.put(mVerticesData).position(0);
122 mVertices.position(VERTICES_DATA_POS_OFFSET);
124 VERTICES_DATA_STRIDE_BYTES, mVertices);
129 mVertices.position(VERTICES_DATA_UV_OFFSET);
131 VERTICES_DATA_STRIDE_BYTES, mVertices);
  /development/ndk/platforms/android-14/samples/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 74 mVertices = ByteBuffer.allocateDirect(mVerticesData.length
76 mVertices.put(mVerticesData).position(0);
102 mVertices.position(VERTICES_DATA_POS_OFFSET);
104 VERTICES_DATA_STRIDE_BYTES, mVertices);
109 mVertices.position(VERTICES_DATA_UV_OFFSET);
111 VERTICES_DATA_STRIDE_BYTES, mVertices);
289 private FloatBuffer mVertices;
  /frameworks/native/services/surfaceflinger/
LayerDim.cpp 62 glVertexPointer(2, GL_FLOAT, 0, mVertices);
LayerBase.cpp 248 tr.transform(mVertices[0], win.left, win.top);
249 tr.transform(mVertices[1], win.left, win.bottom);
250 tr.transform(mVertices[2], win.right, win.bottom);
251 tr.transform(mVertices[3], win.right, win.top);
253 mVertices[i][1] = hw_h - mVertices[i][1];
363 glVertexPointer(2, GL_FLOAT, 0, mVertices);
428 glVertexPointer(2, GL_FLOAT, 0, mVertices);
LayerScreenshot.cpp 137 glVertexPointer(2, GL_FLOAT, 0, mVertices);
LayerBase.h 272 GLfloat mVertices[4][2];
  /frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
MyGLSurfaceView.java 86 mVertices = ByteBuffer.allocateDirect(mVerticesData.length
88 mVertices.put(mVerticesData).position(0);
114 mVertices.position(VERTICES_DATA_POS_OFFSET);
116 VERTICES_DATA_STRIDE_BYTES, mVertices);
121 mVertices.position(VERTICES_DATA_UV_OFFSET);
123 VERTICES_DATA_STRIDE_BYTES, mVertices);
301 private FloatBuffer mVertices;
  /frameworks/base/libs/hwui/
Patch.h 64 TextureVertex* mVertices;
Patch.cpp 39 mVertices = new TextureVertex[maxVertices];
56 delete[] mVertices;
149 TextureVertex* vertex = mVertices;
204 mVertices, GL_DYNAMIC_DRAW);
208 sizeof(TextureVertex) * verticesCount, mVertices);
  /packages/apps/Nfc/src/com/android/nfc/
FireflyRenderer.java 62 static final float mVertices[] = {
104 ByteBuffer vbb = ByteBuffer.allocateDirect(mVertices.length * 4); // Float => 4 bytes
107 mVertexBuffer.put(mVertices);

Completed in 843 milliseconds