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

  /external/eigen/demos/opengl/
icosphere.cpp 41 mIndices.push_back(new std::vector<int>);
42 std::vector<int>& indices = *mIndices.back();
50 while(mIndices.size()<levels)
56 while (level>=int(mIndices.size()))
58 return *mIndices[level];
65 const std::vector<int>& indices = *mIndices.back();
66 mIndices.push_back(new std::vector<int>);
67 std::vector<int>& refinedIndices = *mIndices.back();
102 while (level>=int(mIndices.size()))
112 glDrawElements(GL_TRIANGLES, mIndices[level]->size(), GL_UNSIGNED_INT, &(mIndices[level]->at(0)))
    [all...]
icosphere.h 26 std::vector<std::vector<int>*> mIndices;
quaternion_demo.h 68 std::vector<int> mIndices;
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
Sphere.java 41 private ShortBuffer[] mIndices;
67 mIndices = new ShortBuffer[numIndexBuffers];
78 mIndices[i] = ByteBuffer.allocateDirect(mNumIndices[i] * SHORT_SIZE)
110 mIndices[bufferNum].put(indexBuffer, 0, mNumIndices[bufferNum]);
123 mIndices[bufferNum].put(indexBuffer, 0, mNumIndices[bufferNum]);
127 mIndices[i].position(0);
140 return mIndices;
  /development/samples/Snake/src/com/example/android/snake/
BackgroundView.java 36 private final short[] mIndices =
70 mFillColors, 0, mIndices,
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 60 private short[] mIndices = { 0, 1, 2, 0, 2, 3 };
70 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2);
73 mIndexBuffer.put(mIndices);
88 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2);
91 mIndexBuffer.put(mIndices);
204 GLES20.glDrawElements(GLES20.GL_TRIANGLES, mIndices.length,
NativeRendererOneColorBufferTest.java 54 private short[] mIndices = { 0, 1, 2, 0, 2, 3 };
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 406 private static final int mIndices[] = new int[gMaps.size()];
413 mIndices[modifierMapIndex] += (forward ? 1 : -1);
415 if (mIndices[modifierMapIndex] >= 0 && mIndices[modifierMapIndex] < map.size()) {
419 mIndices[modifierMapIndex] = (forward ? 0 : map.size() - 1);
445 int displayModifierIndex = mIndices[mapIndex];
462 int displayModifierIndex = mIndices[mapIndex];
496 mIndices[mapIndex] = newIndexValue;
500 return mIndices;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Vertices.java 38 private final short[] mIndices = { 0, 1, 2, 3, 4, 1 };
88 mTexs, 0, null, 0, mIndices, 0, 6, mPaint);
  /packages/apps/Nfc/src/com/android/nfc/
FireflyRenderer.java 78 static final short[] mIndices = { 0, 1, 2, 0, 2, 3 };
110 ByteBuffer ibb = ByteBuffer.allocateDirect(mIndices.length * 2); // Short => 2 bytes
113 mIndexBuffer.put(mIndices);
417 gl.glDrawElements(GL10.GL_TRIANGLES, mIndices.length, GL10.GL_UNSIGNED_SHORT,
  /frameworks/base/core/java/android/content/res/
TypedArray.java 44 /*package*/ int[] mIndices;
59 return mIndices[0];
72 return mIndices[1+at];
734 mIndices = indices;
Resources.java 518 array.mIndices[0] = 0;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeTypedArray.java 90 // fills TypedArray.mIndices which is used to implement getIndexCount/getIndexAt
100 mIndices = new int[count+1];
101 mIndices[0] = count;
107 mIndices[index++] = i;
  /prebuilts/devtools/tools/lib/
lint-checks.jar 
  /prebuilts/sdk/tools/lib/
lint_checks.jar 

Completed in 1006 milliseconds