D3DMINDEXBUFFER_DESC (Windows CE 5.0)

Send Feedback

This structure contains data to describe an index buffer.

typedef struct _D3DMINDEXBUFFER_DESC {  D3DMFORMAT       Format;  D3DMRESOURCETYPE Type;  ULONG            Usage;  D3DMPOOL         Pool;  UINT             Size;} D3DMINDEXBUFFER_DESC;

Members

  • Format
    A D3DMFORMAT enumeration value describing the pixel format of the data in the resource. This member identifies whether the index buffer takes 16 or 32-bit offsets.
  • Type
    A D3DMRESOURCETYPE enumeration value identifying the type of resource; in this case, D3DMRTYPE_INDEXBUFFER, an index buffer.
  • Usage
    A ULONG value representing a bit mask defining how the application should use the index buffer. These bits can be hints to the driver to allow it to optimize resource allocations best suited to the index buffer's use.
  • Pool
    A D3DMPOOL value identifying the memory pool that the index buffer is allocated from.
  • Size
    A UINT value representing the number of bytes allocated for the index buffer.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: D3dmtypes.h.

See Also

Direct3D Mobile Structures

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.