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

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
DecalBatch.java 91 Mesh.VertexDataType vertexDataType = Mesh.VertexDataType.VertexArray;
93 vertexDataType = Mesh.VertexDataType.VertexBufferObjectWithVAO;
95 mesh = new Mesh(vertexDataType, false, size * 4, size * 6, new VertexAttribute(
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/gwt/
GwtTest.java 27 import com.badlogic.gdx.graphics.Mesh.VertexDataType;
66 mesh = new Mesh(VertexDataType.VertexBufferObject, true, 6, 0, VertexAttribute.Position(), VertexAttribute.TexCoords(0));
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
SpriteBatch.java 23 import com.badlogic.gdx.graphics.Mesh.VertexDataType;
38 /** @deprecated Do not use, this field is for testing only and is likely to be removed. Sets the {@link VertexDataType} to be
39 * used when gles 3 is not available, defaults to {@link VertexDataType#VertexArray}. */
40 @Deprecated public static VertexDataType defaultVertexDataType = VertexDataType.VertexArray;
99 VertexDataType vertexDataType = (Gdx.gl30 != null) ? VertexDataType.VertexBufferObjectWithVAO : defaultVertexDataType;
101 mesh = new Mesh(vertexDataType, false, size * 4, size * 6, new VertexAttribute(Usage.Position, 2,
PolygonSpriteBatch.java 26 import com.badlogic.gdx.graphics.Mesh.VertexDataType;
119 Mesh.VertexDataType vertexDataType = Mesh.VertexDataType.VertexArray;
121 vertexDataType = VertexDataType.VertexBufferObjectWithVAO;
123 mesh = new Mesh(vertexDataType, false, size, size * 3,
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Mesh.java 68 public enum VertexDataType {
146 * @param type the {@link VertexDataType} to be used, VBO or VA.
152 public Mesh (VertexDataType type, boolean isStatic, int maxVertices, int maxIndices, VertexAttribute... attributes) {
    [all...]

Completed in 420 milliseconds