OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VertexBufferObjectWithVAO
(Results
1 - 7
of
7
) sorted by null
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
VertexBufferObjectWithVAO.java
29
*
VertexBufferObjectWithVAO
objects must be disposed via the {@link #dispose()} method when no longer needed
35
public class
VertexBufferObjectWithVAO
implements VertexData {
50
* Constructs a new interleaved
VertexBufferObjectWithVAO
.
56
public
VertexBufferObjectWithVAO
(boolean isStatic, int numVertices, VertexAttribute... attributes) {
61
* Constructs a new interleaved
VertexBufferObjectWithVAO
.
67
public
VertexBufferObjectWithVAO
(boolean isStatic, int numVertices, VertexAttributes attributes) {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
VertexBufferObjectWithVAO.java
29
*
VertexBufferObjectWithVAO
objects must be disposed via the {@link #dispose()} method when no longer needed
35
public class
VertexBufferObjectWithVAO
implements VertexData {
51
* Constructs a new interleaved
VertexBufferObjectWithVAO
.
57
public
VertexBufferObjectWithVAO
(boolean isStatic, int numVertices, VertexAttribute... attributes) {
62
* Constructs a new interleaved
VertexBufferObjectWithVAO
.
68
public
VertexBufferObjectWithVAO
(boolean isStatic, int numVertices, VertexAttributes attributes) {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Mesh.java
35
import com.badlogic.gdx.graphics.glutils.
VertexBufferObjectWithVAO
;
69
VertexArray, VertexBufferObject, VertexBufferObjectSubData,
VertexBufferObjectWithVAO
138
return new
VertexBufferObjectWithVAO
(isStatic, maxVertices, vertexAttributes);
164
case
VertexBufferObjectWithVAO
:
165
vertices = new
VertexBufferObjectWithVAO
(isStatic, maxVertices, attributes);
[
all
...]
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
VBOWithVAOPerformanceTest.java
30
import com.badlogic.gdx.graphics.glutils.
VertexBufferObjectWithVAO
;
90
VertexBufferObjectWithVAO
newVBOWithVAO = new
VertexBufferObjectWithVAO
(false, maxVertices, vertexAttributes);
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
DecalBatch.java
93
vertexDataType = Mesh.VertexDataType.
VertexBufferObjectWithVAO
;
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
SpriteBatch.java
99
VertexDataType vertexDataType = (Gdx.gl30 != null) ? VertexDataType.
VertexBufferObjectWithVAO
: defaultVertexDataType;
PolygonSpriteBatch.java
121
vertexDataType = VertexDataType.
VertexBufferObjectWithVAO
;
[
all
...]
Completed in 2919 milliseconds