ID3D11Buffer interface (d3d11.h)

A buffer interface accesses a buffer resource, which is unstructured memory. Buffers typically store vertex or index data.

Inheritance

The ID3D11Buffer interface inherits from ID3D11Resource. ID3D11Buffer also has these types of members:

Methods

The ID3D11Buffer interface has these methods.

 
ID3D11Buffer::GetDesc

Get the properties of a buffer resource. (ID3D11Buffer.GetDesc)

Remarks

There are three types of buffers: vertex, index, or a shader-constant buffer. Create a buffer resource by calling ID3D11Device::CreateBuffer.

A buffer must be bound to the pipeline before it can be accessed. Buffers can be bound to the input-assembler stage by calls to ID3D11DeviceContext::IASetVertexBuffers and ID3D11DeviceContext::IASetIndexBuffer, to the stream-output stage by a call to ID3D11DeviceContext::SOSetTargets, and to a shader stage by calling the appropriate shader method (such as ID3D11DeviceContext::VSSetConstantBuffers for example).

Buffers can be bound to multiple pipeline stages simultaneously for reading. A buffer can also be bound to a single pipeline stage for writing; however, the same buffer cannot be bound for reading and writing simultaneously.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps | UWP apps]
Minimum supported server Windows Server 2008 R2 [desktop apps | UWP apps]
Target Platform Windows
Header d3d11.h

See also

ID3D11Resource

Resource Interfaces