> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# D3D12_INDEX_BUFFER_VIEW

> Describe el búfer de índices que se va a ver.

Describe el búfer de índices que se va a ver.

## Sintaxis

```cpp theme={null}
typedef struct D3D12_INDEX_BUFFER_VIEW
{
    D3D12_GPU_VIRTUAL_ADDRESS BufferLocation;
    UINT SizeInBytes;
    DXGI_FORMAT Format;
} D3D12_INDEX_BUFFER_VIEW
```

### Miembros

*BufferLocation*\
Tipo: D3D12\_GPU\_VIRTUAL\_ADDRESS

La dirección virtual de GPU del búfer de índices.
D3D12\_GPU\_VIRTUAL\_ADDRESS es un sinónimo definido mediante typedef de UINT64.

*SizeInBytes*\
Tipo: UINT

El tamaño en bytes del búfer de índices.

*Format*\
Tipo: DXGI\_FORMAT

Un valor de tipo [DXGI\_FORMAT](https://learn.microsoft.com/en-us/windows/desktop/api/dxgiformat/ne-dxgiformat-dxgi_format) para el formato del búfer de índices.

## Comentarios

Esta estructura se pasa a [ID3D12GraphicsCommandList::IASetIndexBuffer](/reference/graphics/d3d12/interfaces/id3d12graphicscommandlist/methods/id3d12graphicscommandlist_iasetindexbuffer_public).

## Requisitos

**Encabezado:** d3d12\_xs.h o d3d12\_x.h\
**Biblioteca:** d3d12\_xs.lib o d3d12\_x.lib\
**Plataformas compatibles**: consolas XBOX Series y familia XBOX One

## Consulte también

[Estructuras principales](https://learn.microsoft.com/en-us/windows/desktop/direct3d12/direct3d-12-structures)


## Related topics

- [IASetIndexBuffer](/es/reference/graphics/d3d12/interfaces/id3d12graphicscommandlist/methods/id3d12graphicscommandlist_iasetindexbuffer_public.md)
- [D3D12_VIEW_INSTANCING_DESC](/es/reference/graphics/d3d12/structs/d3d12_view_instancing_desc_public.md)
- [D3D12_VERTEX_BUFFER_VIEW](/es/reference/graphics/d3d12/structs/d3d12_vertex_buffer_view_public.md)
- [D3D12_VIEW_INSTANCE_LOCATION](/es/reference/graphics/d3d12/structs/d3d12_view_instance_location_public.md)
- [D3D12_STREAM_OUTPUT_BUFFER_VIEW](/es/reference/graphics/d3d12/structs/d3d12_stream_output_buffer_view_public.md)
