Class VertexArray
- java.lang.Object
-
- com.badlogic.gdx.graphics.glutils.VertexArray
-
- All Implemented Interfaces:
VertexData,Disposable
public class VertexArray extends java.lang.Object implements VertexData
Convenience class for working with OpenGL vertex arrays. It interleaves all data in the order you specified in the constructor via
VertexAttribute.This class is not compatible with OpenGL 3+ core profiles. For this
VertexBufferObjects are needed.
-
-
Constructor Summary
Constructors Constructor Description VertexArray(int numVertices, VertexAttribute... attributes)Constructs a new interleaved VertexArrayVertexArray(int numVertices, VertexAttributes attributes)Constructs a new interleaved VertexArray
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidbind(ShaderProgram shader)Binds this VertexData for rendering via glDrawArrays or glDrawElements.voidbind(ShaderProgram shader, int[] locations)Binds this VertexData for rendering via glDrawArrays or glDrawElements.voiddispose()Disposes this VertexData and all its associated OpenGL resources.VertexAttributesgetAttributes()java.nio.FloatBuffergetBuffer()Deprecated.usegetBuffer(boolean)insteadjava.nio.FloatBuffergetBuffer(boolean forWriting)Returns the underlying FloatBuffer for reading or writing.intgetNumMaxVertices()intgetNumVertices()voidinvalidate()Invalidates the VertexData if applicable.voidsetVertices(float[] vertices, int offset, int count)Sets the vertices of this VertexData, discarding the old vertex data.voidunbind(ShaderProgram shader)Unbinds this VertexBufferObject.voidunbind(ShaderProgram shader, int[] locations)Unbinds this VertexData.voidupdateVertices(int targetOffset, float[] vertices, int sourceOffset, int count)Update (a portion of) the vertices.
-
-
-
Constructor Detail
-
VertexArray
public VertexArray(int numVertices, VertexAttribute... attributes)Constructs a new interleaved VertexArray- Parameters:
numVertices- the maximum number of verticesattributes- theVertexAttributes
-
VertexArray
public VertexArray(int numVertices, VertexAttributes attributes)Constructs a new interleaved VertexArray- Parameters:
numVertices- the maximum number of verticesattributes- theVertexAttributes
-
-
Method Detail
-
dispose
public void dispose()
Description copied from interface:VertexDataDisposes this VertexData and all its associated OpenGL resources.- Specified by:
disposein interfaceDisposable- Specified by:
disposein interfaceVertexData
-
getBuffer
@Deprecated public java.nio.FloatBuffer getBuffer()
Deprecated.usegetBuffer(boolean)insteadDescription copied from interface:VertexDataReturns the underlying FloatBuffer and marks it as dirty, causing the buffer contents to be uploaded on the next call to bind. If you need immediate uploading useVertexData.setVertices(float[], int, int); Any modifications made to the Buffer *after* the call to bind will not automatically be uploaded.- Specified by:
getBufferin interfaceVertexData- Returns:
- the underlying FloatBuffer holding the vertex data.
-
getBuffer
public java.nio.FloatBuffer getBuffer(boolean forWriting)
Description copied from interface:VertexDataReturns the underlying FloatBuffer for reading or writing.- Specified by:
getBufferin interfaceVertexData- Parameters:
forWriting- when true, the underlying buffer will be uploaded on the next call to bind. If you need immediate uploading useVertexData.setVertices(float[], int, int).- Returns:
- the underlying FloatBuffer holding the vertex data.
-
getNumVertices
public int getNumVertices()
- Specified by:
getNumVerticesin interfaceVertexData- Returns:
- the number of vertices this VertexData stores
-
getNumMaxVertices
public int getNumMaxVertices()
- Specified by:
getNumMaxVerticesin interfaceVertexData- Returns:
- the number of vertices this VertedData can store
-
setVertices
public void setVertices(float[] vertices, int offset, int count)Description copied from interface:VertexDataSets the vertices of this VertexData, discarding the old vertex data. The count must equal the number of floats per vertex times the number of vertices to be copied to this VertexData. The order of the vertex attributes must be the same as specified at construction time viaVertexAttributes.This can be called in between calls to bind and unbind. The vertex data will be updated instantly.
- Specified by:
setVerticesin interfaceVertexData- Parameters:
vertices- the vertex dataoffset- the offset to start copying the data fromcount- the number of floats to copy
-
updateVertices
public void updateVertices(int targetOffset, float[] vertices, int sourceOffset, int count)Description copied from interface:VertexDataUpdate (a portion of) the vertices. Does not resize the backing buffer.- Specified by:
updateVerticesin interfaceVertexDatavertices- the vertex datasourceOffset- the offset to start copying the data fromcount- the number of floats to copy
-
bind
public void bind(ShaderProgram shader)
Description copied from interface:VertexDataBinds this VertexData for rendering via glDrawArrays or glDrawElements.- Specified by:
bindin interfaceVertexData
-
bind
public void bind(ShaderProgram shader, int[] locations)
Description copied from interface:VertexDataBinds this VertexData for rendering via glDrawArrays or glDrawElements.- Specified by:
bindin interfaceVertexDatalocations- array containing the attribute locations.
-
unbind
public void unbind(ShaderProgram shader)
Unbinds this VertexBufferObject.- Specified by:
unbindin interfaceVertexData- Parameters:
shader- the shader
-
unbind
public void unbind(ShaderProgram shader, int[] locations)
Description copied from interface:VertexDataUnbinds this VertexData.- Specified by:
unbindin interfaceVertexDatalocations- array containing the attribute locations.
-
getAttributes
public VertexAttributes getAttributes()
- Specified by:
getAttributesin interfaceVertexData- Returns:
- the
VertexAttributesas specified during construction.
-
invalidate
public void invalidate()
Description copied from interface:VertexDataInvalidates the VertexData if applicable. Use this in case of a context loss.- Specified by:
invalidatein interfaceVertexData
-
-