?/TD>
Microsoft DirectX 9.0

D3DVERTEXBUFFER_DESC Structure


Describes a vertex buffer.

Syntax

typedef struct _D3DVERTEXBUFFER_DESC {
    D3DFORMAT Format;
    D3DRESOURCETYPE Type;
    DWORD Usage;
    D3DPOOL Pool;
    UINT Size;
    DWORD FVF;
} D3DVERTEXBUFFER_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.

Structure Information

Headerd3d9types.h
Minimum operating systems Windows 98

See Also

IDirect3DVertexBuffer9::GetDesc


© 2002 Microsoft Corporation. All rights reserved.