We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
HLSL allows a constant-sized array variable to be initialized from an array of the same type.
typedef int4 int8[2]; export void fn(int8 A) { int8 a = A; }
CE
AC: the code above should compile and initialize the local array a by copying A.
a
A
Status