ID3D10Device::VSGetShaderResources method (d3d10.h)

Get the vertex shader resources.

Syntax

void VSGetShaderResources(
  [in]  UINT                     StartSlot,
  [in]  UINT                     NumViews,
  [out] ID3D10ShaderResourceView **ppShaderResourceViews
);

Parameters

[in] StartSlot

Type: UINT

Index into the device's zero-based array to begin getting shader resources from.

[in] NumViews

Type: UINT

The number of resources to get from the device. Up to a maximum of 128 slots are available for shader resources.

[out] ppShaderResourceViews

Type: ID3D10ShaderResourceView**

Array of shader resource view interfaces to be returned by the device.

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