flatten (HLSL)

Note

This HLSL attribute is available only when developing for the Xbox 360.

Performs branching using conditional move instructions.

Syntax

[flatten]

Parameters

None.

Scope

Applies to if statements.

Examples

The following HLSL code snippet shows how to apply the flatten attribute.

[flatten]
if( a )
{
  a = sqrt( a );
}
    

See Also

Concepts

HLSL Attributes (Xbox 360)
Attribute Syntax
Attribute Categories

Reference

HLSL Attributes Reference (Xbox 360)