blob: 3d0b914183a0f4cfeb9c0c9294a8d82b63269e13 [file] [log] [blame]
[numthreads(1, 1, 1)]
void main() {
const float3 v = float3(1.0f, 2.0f, 3.0f);
const float scalar = v.y;
const float2 swizzle2 = v.xz;
const float3 swizzle3 = v.xzy;
return;
}