/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
H A D | IndexData.java | 44 public void setIndices (short[] indices, int offset, int count);
method in interface:IndexData 51 public void setIndices (ShortBuffer indices);
method in interface:IndexData 62 * If you need immediate uploading use {@link #setIndices(short[], int, int)}.
|
H A D | IndexArray.java | 69 public void setIndices (short[] indices, int offset, int count) {
method in class:IndexArray 77 public void setIndices (ShortBuffer indices) {
method in class:IndexArray 98 * If you need immediate uploading use {@link #setIndices(short[], int, int)}.
|
H A D | IndexBufferObject.java | 109 public void setIndices (short[] indices, int offset, int count) {
method in class:IndexBufferObject 123 public void setIndices (ShortBuffer indices) {
method in class:IndexBufferObject 156 * If you need immediate uploading use {@link #setIndices(short[], int, int)}.
|
H A D | IndexBufferObjectSubData.java | 115 public void setIndices (short[] indices, int offset, int count) {
method in class:IndexBufferObjectSubData 129 public void setIndices (ShortBuffer indices) {
method in class:IndexBufferObjectSubData 163 * If you need immediate uploading use {@link #setIndices(short[], int, int)}.
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/ |
H A D | IndexBufferObject.java | 99 public void setIndices (short[] indices, int offset, int count) {
method in class:IndexBufferObject 111 public void setIndices (ShortBuffer indices) {
method in class:IndexBufferObject 139 * If you need immediate uploading use {@link #setIndices(short[], int, int)}.
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ |
H A D | btFace.java | 61 public void setIndices(SWIGTYPE_p_btAlignedObjectArrayT_int_t value) { method in class:btFace
|
H A D | btIndexedMesh.java | 204 setIndices(indices, indexOffset, indexCount); 303 public void setIndices(java.nio.ShortBuffer indices, int indexOffset, int indexCount) { method in class:btIndexedMesh
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
H A D | FloatTextureTest.java | 147 quad.setIndices(new short[] {0, 1, 2, 2, 3, 0}); 161 screenQuad.setIndices(new short[] {0, 1, 2, 2, 3, 0});
|
H A D | IndexBufferObjectShaderTest.java | 83 ibo.setIndices(new short[] {0, 1, 2}, 0, 3);
|
H A D | MeshShaderTest.java | 56 mesh.setIndices(new short[] {0, 1, 2, 2, 3, 0});
|
H A D | ShaderMultitextureTest.java | 62 mesh.setIndices(indices);
|
H A D | VertexBufferObjectShaderTest.java | 98 indices.setIndices(new short[] {0, 1, 2}, 0, 3);
|
H A D | MipMapTest.java | 68 mesh.setIndices(new short[] {0, 1, 2, 3});
|
H A D | VBOWithVAOPerformanceTest.java | 112 newVBOWithVAOMesh.setIndices(indexArray); 115 oldVBOWithVAOMesh.setIndices(indexArray);
|
H A D | ProjectiveTextureTest.java | 86 plane.setIndices(new short[] {3, 2, 1, 1, 0, 3});
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/ |
H A D | HullResult.java | 105 public void setIndices(SWIGTYPE_p_btAlignedObjectArrayT_unsigned_int_t value) { method in class:HullResult
|
H A D | PHullResult.java | 97 public void setIndices(SWIGTYPE_p_btAlignedObjectArrayT_unsigned_int_t value) { method in class:PHullResult
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gles2/ |
H A D | MipMap2D.java | 60 mesh.setIndices(indices);
|
H A D | Shapes.java | 62 mesh.setIndices(indices);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
H A D | Mesh.java | 270 public Mesh setIndices (short[] indices) {
method in class:Mesh 271 this.indices.setIndices(indices, 0, indices.length);
282 public Mesh setIndices (short[] indices, int offset, int count) {
method in class:Mesh 283 this.indices.setIndices(indices, offset, count);
1084 result.setIndices(indices);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
H A D | HeightField.java | 149 setIndices(); 152 private void setIndices () { method in class:HeightField 171 mesh.setIndices(indices);
|
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
H A D | btTriangleIndexVertexArray.i | 21 void setIndices(short *indices, int indexOffset, int indexCount) { 182 setIndices(indices, indexOffset, indexCount);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/ |
H A D | DecalBatch.java | 110 mesh.setIndices(indices);
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/ |
H A D | VoxelWorld.java | 87 meshes[i].setIndices(indices);
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/ |
H A D | SpriteCache.java | 135 mesh.setIndices(indices);
|