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

  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
TriangleRenderer.java 121 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
125 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
128 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
140 for (int i = 0; i < VERTS; i++) {
146 for(int i = 0; i < VERTS; i++) {
157 gl.glDrawElements(GL10.GL_TRIANGLE_STRIP, VERTS,
161 private final static int VERTS = 3;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
StaticTriangleRenderer.java 218 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
222 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
226 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
238 for (int i = 0; i < VERTS; i++) {
244 for (int i = 0; i < VERTS; i++) {
250 for(int i = 0; i < VERTS; i++) {
264 glDrawElements(GL_TRIANGLE_STRIP, VERTS,
268 private final static int VERTS = 3;
TriangleRenderer.java 187 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
191 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
195 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
207 for (int i = 0; i < VERTS; i++) {
213 for (int i = 0; i < VERTS; i++) {
219 for(int i = 0; i < VERTS; i++) {
233 gl.glDrawElements(GL10.GL_TRIANGLE_STRIP, VERTS,
237 private final static int VERTS = 3;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
SpriteTextRenderer.java 292 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 3 * 4);
296 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
300 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 2);
304 for (int i = 0; i < VERTS; i++) {
310 for (int i = 0; i < VERTS; i++) {
316 for(int i = 0; i < VERTS; i++) {
330 gl.glDrawElements(GL10.GL_TRIANGLE_STRIP, VERTS,
342 private final static int VERTS = 3;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
AccelerometerTestRenderer.java 48 private final static int VERTS = 6;
70 ByteBuffer vbb = ByteBuffer.allocateDirect(VERTS * 6 * 4);
74 ByteBuffer tbb = ByteBuffer.allocateDirect(VERTS * 2 * 4);
78 ByteBuffer ibb = ByteBuffer.allocateDirect(VERTS * 8 * 2);
98 for (int i = 0; i < VERTS; i++) {
104 for (int i = 0; i < VERTS; i++) {

Completed in 228 milliseconds