ID3D11DeviceContext::Draw Method

Draw non-indexed, non-instanced primitives.

Syntax

public:
void Draw(
         UINT VertexCount,
         UINT StartVertexLocation
)  

Parameters

VertexCount
Type: UINT 

[in] Number of vertices to draw.

StartVertexLocation
Type: UINT 

[in] Index of the first vertex, which is usually an offset in a vertex buffer.

Return value

None.

Remarks

Draw submits work to the rendering pipeline.

The vertex data for a draw call normally comes from a vertex buffer that is bound to the pipeline.

Even without any vertex buffer bound to the pipeline, you can generate your own vertex data in your vertex shader by using the SV_VertexID system-value semantic to determine the current vertex that the runtime is processing.

Requirements

Header: Declared in d3d11_x.h (d3d11.h on other Windows platforms).

Library: Use d3d11_x.lib (d3d11.lib on other Windows platforms).

See also

ID3D11DeviceContext

ID3D11DeviceContext Members