Click or drag to resize

DataBuffer Class

A (vertex) array buffer or element array (index) buffer
Inheritance Hierarchy

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class DataBuffer : GLObject

The DataBuffer type exposes the following members.

Constructors
  NameDescription
Public methodDataBuffer
Creates a buffer.
Top
Properties
  NameDescription
Public propertyBufferUsage
Get the buffer object's usage pattern.
Public propertyStatic memberCurrentIndexBuffer
Gets the currently bound element array buffer (aka Index Buffer).
Public propertyStatic memberCurrentVertexBuffer
Gets the currently bound array buffer (aka Vertex Buffer).
Public propertyHandle
Internal OpenGL handle to the object
(Inherited from GLObject.)
Public propertyIsBound
Checks if this buffer is currently bound.
Public propertySize
Get the size of the buffer in bytes.
Top
Methods
  NameDescription
Public methodBind
Binds the buffer.
Public methodDataT(T, DataBufferUsage)
Create and initialize a buffer object's data store.
Public methodDataT(T, IntPtr, DataBufferUsage)
Create and initialize a buffer object's data store.
Public methodDispose
Disposes of the OpenGL object
(Inherited from GLObject.)
Public methodEquals
Checks if this object matches another object.
(Inherited from GLObject.)
Public methodGetHashCode
Returns a hash code for this object
(Inherited from GLObject.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSubDataT(IntPtr, T)
Update a subset of a buffer object's data store.
Public methodSubDataT(IntPtr, T, IntPtr)
Update a subset of a buffer object's data store.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUnbind
Unbinds the buffer.
Top
See Also