D3DPSHADERCAPS2_0

Pixel shader driver caps.

typedef struct D3DPSHADERCAPS2_0 {
    DWORD Caps;
    INT DynamicFlowControlDepth;
    INT NumTemps;
    INT StaticFlowControlDepth;
    INT NumInstructionSlots;
} D3DPSHADERCAPS2_0, *LPD3DPSHADERCAPS2_0;

Members

Caps
Instruction predication is supported if this value is nonzero. See setp_comp - vs.
DynamicFlowControlDepth
Either 0 or 24, which represents the depth of the dynamic flow control instruction nesting. See D3DPSHADERCAPS2_0.
NumTemps
The number of temporary registers supported. See D3DPSHADERCAPS2_0.
StaticFlowControlDepth
The depth of nesting of the loop - vs/rep - vs and call - vs/callnz bool - vs instructions. See D3DPSHADERCAPS2_0.
NumInstructionSlots
The number of instruction slots supported. See D3DPSHADERCAPS2_0.

See Also

D3DCAPS9