You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
static const float array[3] = { 1, 2, 3 };
|
|
|
|
float main(float input : IN) : SV_Target0
|
|
{
|
|
// non-integer indexes get converted to uints:
|
|
// uint(input) 3.0 2.0 1.0
|
|
return array[input] + array[2.0] + array[true] + array[false];
|
|
}
|
|
|