ID3D10Device::GetPredication method (d3d10.h)

Get the rendering predicate state.

Syntax

void GetPredication(
  [out] ID3D10Predicate **ppPredicate,
  [out] BOOL            *pPredicateValue
);

Parameters

[out] ppPredicate

Type: ID3D10Predicate**

Address of a pointer to a predicate (see ID3D10Predicate). Value stored here will be NULL upon device creation.

[out] pPredicateValue

Type: BOOL*

Address of a boolean to fill with the predicate comparison value. FALSE upon device creation.

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