OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getIndicesBuffer
(Results
1 - 8
of
8
) sorted by null
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
SoftBodyTest.java
101
mesh.
getIndicesBuffer
().position(0);
102
mesh.
getIndicesBuffer
().limit(faceCount * 3);
104
softBody.getIndices(mesh.
getIndicesBuffer
(), faceCount);
SoftMeshTest.java
86
normalOffset, meshPart.mesh.
getIndicesBuffer
(), meshPart.offset, meshPart.size, indexMap, 0);
124
meshPart.mesh.
getIndicesBuffer
(), meshPart.offset, meshPart.size, indexMap, 0);
TriangleRaycastTest.java
176
ShortBuffer indicesBuffer = mesh.
getIndicesBuffer
();
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Mesh.java
325
int pos =
getIndicesBuffer
().position();
326
getIndicesBuffer
().position(srcOffset);
327
getIndicesBuffer
().get(indices, destOffset, count);
328
getIndicesBuffer
().position(pos);
[
all
...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Model.java
249
mesh.
getIndicesBuffer
().clear();
257
mesh.
getIndicesBuffer
().put(part.indices);
261
mesh.
getIndicesBuffer
().position(0);
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btIndexedMesh.java
188
set(tag, mesh.getVerticesBuffer(), mesh.getVertexSize(), mesh.getNumVertices(), posAttr.offset, mesh.
getIndicesBuffer
(), offset, count);
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/
btTriangleIndexVertexArray.i
166
set(tag, mesh.getVerticesBuffer(), mesh.getVertexSize(), mesh.getNumVertices(), posAttr.offset, mesh.
getIndicesBuffer
(), offset, count);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
SpriteBatch.java
964
mesh.
getIndicesBuffer
().position(0);
965
mesh.
getIndicesBuffer
().limit(count);
Completed in 1737 milliseconds