Package gaiasky.util.gdx.mesh
Interface IntIndexData
- All Superinterfaces:
com.badlogic.gdx.utils.Disposable
- All Known Implementing Classes:
IntIndexArray
,IntIndexBufferObject
,IntIndexBufferObjectSubData
public interface IntIndexData
extends com.badlogic.gdx.utils.Disposable
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bind()
Binds this IntIndexBufferObject for rendering with glDrawElements.void
dispose()
Disposes this IndexDatat and all its associated OpenGL resources.Returns the underlying IntBuffer.int
int
void
Invalidates the IntIndexBufferObject so a new OpenGL buffer handle is created.void
setIndices
(int[] indices, int offset, int count) Sets the indices of this IntIndexBufferObject, discarding the old indices.void
setIndices
(IntBuffer indices) Copies the specified indices to the indices of this IntIndexBufferObject, discarding the old indices.void
unbind()
Unbinds this IntIndexBufferObject.void
updateIndices
(int targetOffset, int[] indices, int offset, int count) Update (a portion of) the indices.
-
Method Details
-
getNumIndices
int getNumIndices()- Returns:
- the number of indices currently stored in this buffer
-
getNumMaxIndices
int getNumMaxIndices()- Returns:
- the maximum number of indices this IntIndexBufferObject can store.
-
setIndices
void setIndices(int[] indices, int offset, int count) Sets the indices of this IntIndexBufferObject, discarding the old indices. The count must equal the number of indices to be copied to this IntIndexBufferObject.
This can be called in between calls to
bind()
andunbind()
. The index data will be updated instantly.- Parameters:
indices
- the index dataoffset
- the offset to start copying the data fromcount
- the number of ints to copy
-
setIndices
Copies the specified indices to the indices of this IntIndexBufferObject, discarding the old indices. Copying start at the currentBuffer.position()
of the specified buffer and copied theBuffer.remaining()
amount of indices. This can be called in between calls tobind()
andunbind()
. The index data will be updated instantly.- Parameters:
indices
- the index data to copy
-
updateIndices
void updateIndices(int targetOffset, int[] indices, int offset, int count) Update (a portion of) the indices.- Parameters:
targetOffset
- offset in indices bufferindices
- the index dataoffset
- the offset to start copying the data fromcount
- the number of ints to copy
-
getBuffer
IntBuffer getBuffer()Returns the underlying IntBuffer. If you modify the buffer contents they will be uploaded on the call to
bind()
. If you need immediate uploading usesetIndices(int[], int, int)
.- Returns:
- the underlying int buffer.
-
bind
void bind()Binds this IntIndexBufferObject for rendering with glDrawElements. -
unbind
void unbind()Unbinds this IntIndexBufferObject. -
invalidate
void invalidate()Invalidates the IntIndexBufferObject so a new OpenGL buffer handle is created. Use this in case of a context loss. -
dispose
void dispose()Disposes this IndexDatat and all its associated OpenGL resources.- Specified by:
dispose
in interfacecom.badlogic.gdx.utils.Disposable
-