D3DX11_EFFECT_DESC structure

Describes an effect.

Syntax

typedef struct _D3DX11_EFFECT_DESC {
  UINT ConstantBuffers;
  UINT GlobalVariables;
  UINT InterfaceVariables;
  UINT Techniques;
  UINT Groups;
} D3DX11_EFFECT_DESC;

Members

ConstantBuffers

Type: UINT

Number of constant buffers in this effect.

GlobalVariables

Type: UINT

Number of global variables in this effect.

InterfaceVariables

Type: UINT

Number of global interfaces in this effect.

Techniques

Type: UINT

Number of techniques in this effect.

Groups

Type: UINT

Number of groups in this effect.

Remarks

D3DX11_EFFECT_DESC is used with ID3DX11Effect::GetDesc.

Requirements

Requirement Value
Header
D3dx11effect.h

See also

Effects 11 Structures