Expand Minimize
This topic has not yet been rated - Rate this topic

ID3D10Device::GSSetConstantBuffers method

Set the constant buffers used by the geometry shader pipeline stage.

Syntax


void GSSetConstantBuffers(
  [in]  UINT StartSlot,
  [in]  UINT NumBuffers,
  [in]  ID3D10Buffer *const *ppConstantBuffers
);

Parameters

StartSlot [in]

Type: UINT

Index into the device's zero-based array to begin setting constant buffers to.

NumBuffers [in]

Type: UINT

Number of buffers to set.

ppConstantBuffers [in]

Type: ID3D10Buffer*

Array of constant buffers (see ID3D10Buffer) being given to the device.

Return value

Returns nothing.

Remarks

The method will not hold references to the interfaces passed in. For that reason, applications should be careful not to release interfaces currently in use by the device.

Requirements

Header

D3D10.h

Library

D3D10.lib

See also

ID3D10Device Interface

 

 

Build date: 11/28/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.