Searched defs:mOverlayTexCoordBuffer (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Gallery3D/src/com/cooliris/media/
H A DGridQuad.java35 private FloatBuffer mOverlayTexCoordBuffer; field in class:GridQuad
110 mOverlayTexCoordBuffer = ByteBuffer.allocateDirect(FLOAT_SIZE * size * 2 * orientationCount).order(ByteOrder.nativeOrder())
256 mOverlayTexCoordBuffer.put(texIndex, u);
257 mOverlayTexCoordBuffer.put(texIndex + 1, v);
269 final int texCoordSize = mOverlayTexCoordBuffer.capacity() * 4;
270 mOverlayTexCoordBuffer.position(0);
271 gl11.glBufferData(GL11.GL_ARRAY_BUFFER, texCoordSize, mOverlayTexCoordBuffer, GL11.GL_DYNAMIC_DRAW);
370 final int texCoordSize = mOverlayTexCoordBuffer.capacity() * 4;
371 mOverlayTexCoordBuffer.position(0);
372 gl11.glBufferData(GL11.GL_ARRAY_BUFFER, texCoordSize, mOverlayTexCoordBuffer, bufferTyp
[all...]

Completed in 4 milliseconds