![]() | DataBufferDataT Method (T, IntPtr, DataBufferUsage) |
Namespace: Ooogles
public void Data<T>( T[] data, IntPtr size, DataBufferUsage usage = DataBufferUsage.StaticDraw ) where T : struct, new()
Exception | Condition |
---|---|
GLException | InvalidValue if size is negative. |
GLException | InvalidOperation if no buffer is bound. |
GLException | OutOfMemory if the GL is unable to create a data store with the specified size. |
usage is a hint to the GL implementation as to how a buffer object's data store will be accessed. This enables the GL implementation to make more intelligent decisions that may significantly impact buffer object performance. It does not, however, constrain the actual usage of the data store.
Note: clients must align data elements consistent with the requirements of the client platform, with an additional base-level requirement that an offset within a buffer to a datum comprising N be a multiple of N.
Note: in DEBUG mode with assertions enabled, an error will be logged to the debug console if this buffer is not bound.
OpenGL API: glBufferData