public class IndexBufferObject extends Object implements IndexData
In IndexBufferObject wraps OpenGL's index buffer functionality to be used in conjunction with VBOs. This class can be seamlessly used with OpenGL ES 1.x and 2.0.
Uses indirect Buffers on Android 1.5/1.6 to fix GC invocation due to leaking PlatformAddress instances.
You can also use this to store indices for vertex arrays. Do not call bind()
or unbind()
in this case but
rather use getBuffer()
to use the buffer directly with glDrawElements. You must also create the IndexBufferObject with
the second constructor and specify isDirect as true as glDrawElements in conjunction with vertex arrays needs direct buffers.
VertexBufferObjects must be disposed via the dispose()
method when no longer needed
Constructor and Description |
---|
IndexBufferObject(boolean isStatic,
int maxIndices)
Creates a new IndexBufferObject.
|
IndexBufferObject(int maxIndices)
Creates a new IndexBufferObject to be used with vertex arrays.
|
Modifier and Type | Method and Description |
---|---|
void |
bind()
Binds this IndexBufferObject for rendering with glDrawElements.
|
void |
dispose()
Disposes this IndexBufferObject and all its associated OpenGL resources.
|
ShortBuffer |
getBuffer()
Returns the underlying ShortBuffer.
|
int |
getNumIndices() |
int |
getNumMaxIndices() |
void |
invalidate()
Invalidates the IndexBufferObject so a new OpenGL buffer handle is created.
|
void |
setIndices(short[] indices,
int offset,
int count)
Sets the indices of this IndexBufferObject, discarding the old indices.
|
void |
setIndices(ShortBuffer indices)
Copies the specified indices to the indices of this IndexBufferObject, discarding the old indices.
|
void |
unbind()
Unbinds this IndexBufferObject.
|
public IndexBufferObject(boolean isStatic, int maxIndices)
isStatic
- whether the index buffer is staticmaxIndices
- the maximum number of indices this buffer can holdpublic IndexBufferObject(int maxIndices)
maxIndices
- the maximum number of indices this buffer can holdpublic int getNumIndices()
getNumIndices
in interface IndexData
public int getNumMaxIndices()
getNumMaxIndices
in interface IndexData
public void setIndices(short[] indices, int offset, int count)
Sets the indices of this IndexBufferObject, discarding the old indices. The count must equal the number of indices to be copied to this IndexBufferObject.
This can be called in between calls to bind()
and unbind()
. The index data will be updated instantly.
setIndices
in interface IndexData
indices
- the vertex dataoffset
- the offset to start copying the data fromcount
- the number of shorts to copypublic void setIndices(ShortBuffer indices)
IndexData
Buffer.position()
of the specified buffer and copied the Buffer.remaining()
amount of
indices. This can be called in between calls to IndexData.bind()
and IndexData.unbind()
. The index data will be updated
instantly.setIndices
in interface IndexData
indices
- the index data to copypublic ShortBuffer getBuffer()
Returns the underlying ShortBuffer. If you modify the buffer contents they wil be uploaded on the call to bind()
.
If you need immediate uploading use setIndices(short[], int, int)
.
public void bind()
public void unbind()
public void invalidate()
invalidate
in interface IndexData
public void dispose()
dispose
in interface IndexData
dispose
in interface Disposable
Copyright © 2015. All rights reserved.