Vertex and index buffers are either static for mesh drawing or dynamic for CircularBuffer.
Namespace: DeltaEngine.Graphics.BaseOpenGL11Assembly: DeltaEngine.Graphics.BaseOpenGL11 (in DeltaEngine.Graphics.BaseOpenGL11.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Static | 0 | 1-to-n update-to-draw. Data is specified once during initialization (3D Meshes). | |
Dynamic | 1 | N-to-n update-to-draw. Data is drawn multiple times before it changes (Terrains, Custom). | |
Stream | 2 | 1-to-1 update-to-draw. Data is very volatile and will change every frame (CircularBuffer). |
See Also