Skip to content

Latest commit

 

History

History
83 lines (52 loc) · 1.45 KB

id3dxeffect--isparameterused.md

File metadata and controls

83 lines (52 loc) · 1.45 KB
description ms.assetid title ms.topic ms.date topic_type api_name api_type api_location
Determines if a parameter is used by the technique.
ac50c0d3-93d9-4477-a854-d0b53df28c90
ID3DXEffect::IsParameterUsed method (D3DX9Effect.h)
reference
05/31/2018
APIRef
kbSyntax
ID3DXEffect.IsParameterUsed
COM
D3dx9.lib
D3dx9.dll

ID3DXEffect::IsParameterUsed method

Determines if a parameter is used by the technique.

Syntax

BOOL IsParameterUsed(
  [in] D3DXHANDLE hParameter,
  [in] D3DXHANDLE hTechnique
);

Parameters

hParameter [in]

Type: D3DXHANDLE

Unique identifier for the parameter. See Handles (Direct3D 9).

hTechnique [in]

Type: D3DXHANDLE

Unique identifier for the technique. See Handles (Direct3D 9).

Return value

Type: BOOL

Returns TRUE if the parameter is being used and returns FALSE if the parameter is not being used.

Requirements

Requirement Value
Header
D3DX9Effect.h
Library
D3dx9.lib

See also

ID3DXEffect