D3DVERTEXBUFFER_DESC
Describes a vertex buffer.
typedef struct D3DVERTEXBUFFER_DESC {
D3DFORMAT Format;
D3DRESOURCETYPE Type;
DWORD Usage;
D3DPOOL Pool;
UINT Size;
DWORD FVF;
} D3DVERTEXBUFFER_DESC, *LPD3DVERTEXBUFFER_DESC;
Members
- Format
- Member of the D3DFORMAT enumerated type, describing the surface format of the vertex buffer data.
- Type
- Member of the D3DRESOURCETYPE enumerated type, identifying this resource as a vertex buffer.
- Usage
- Combination of one or more D3DUSAGE flags.
- Pool
- Member of the D3DPOOL enumerated type, specifying the class of memory allocated for this vertex buffer.
- Size
- Size of the vertex buffer, in bytes.
- FVF
- Combination of D3DFVF that describes the vertex format of the vertices in this buffer.
See Also
IDirect3DVertexBuffer9::GetDesc, Vertex Buffers