HomeSort by relevance Sort by last modified time
    Searched defs:IndexBufferObject (Results 1 - 2 of 2) sorted by null

  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/
IndexBufferObject.java 27 * In IndexBufferObject wraps OpenGL's index buffer functionality to be used in conjunction with VBOs. This class can be
37 * rather use {@link #getBuffer()} to use the buffer directly with glDrawElements. You must also create the IndexBufferObject with
46 public class IndexBufferObject implements IndexData {
54 /** Creates a new IndexBufferObject.
58 public IndexBufferObject (boolean isStatic, int maxIndices) {
66 /** Creates a new IndexBufferObject to be used with vertex arrays.
69 public IndexBufferObject (int maxIndices) {
82 /** @return the maximum number of indices this IndexBufferObject can store. */
88 * Sets the indices of this IndexBufferObject, discarding the old indices. The count must equal the number of indices to be
89 * copied to this IndexBufferObject.
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
IndexBufferObject.java 28 * In IndexBufferObject wraps OpenGL's index buffer functionality to be used in conjunction with VBOs. This class can be
38 * rather use {@link #getBuffer()} to use the buffer directly with glDrawElements. You must also create the IndexBufferObject with
47 public class IndexBufferObject implements IndexData {
59 /** Creates a new static IndexBufferObject to be used with vertex arrays.
62 public IndexBufferObject (int maxIndices) {
66 /** Creates a new IndexBufferObject.
70 public IndexBufferObject (boolean isStatic, int maxIndices) {
92 /** @return the maximum number of indices this IndexBufferObject can store. */
98 * Sets the indices of this IndexBufferObject, discarding the old indices. The count must equal the number of indices to be
99 * copied to this IndexBufferObject.
    [all...]

Completed in 3217 milliseconds