ID3D10Device::IAGetIndexBuffer method (d3d10.h)

Get a pointer to the index buffer that is bound to the input-assembler stage.

Syntax

void IAGetIndexBuffer(
  [out] ID3D10Buffer **pIndexBuffer,
  [out] DXGI_FORMAT  *Format,
  [out] UINT         *Offset
);

Parameters

[out] pIndexBuffer

Type: ID3D10Buffer**

A pointer to an index buffer returned by the method (see ID3D10Buffer).

[out] Format

Type: DXGI_FORMAT*

Specifies format of the data in the index buffer (see DXGI_FORMAT). These formats provide the size and type of the data in the buffer. The only formats allowed for index buffer data are 16-bit (DXGI_FORMAT_R16_UINT) and 32-bit (DXGI_FORMAT_R32_UINT) integers.

[out] Offset

Type: UINT*

Offset (in bytes) from the start of the index buffer, to the first index to use.

Return value

None

Remarks

Any returned interfaces will have their reference count incremented by one. Applications should call IUnknown::Release on the returned interfaces when they are no longer needed to avoid memory leaks.

Requirements

Requirement Value
Target Platform Windows
Header d3d10.h
Library D3D10.lib

See also

ID3D10Device Interface