2021-05-17 22:26:57 +00:00
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void main() {
|
2021-05-17 23:37:47 +00:00
|
|
|
float3 v = float3(0.0f, 0.0f, 0.0f);
|
2021-05-17 22:26:57 +00:00
|
|
|
const float scalar = v.y;
|
|
|
|
const float2 swizzle2 = v.xz;
|
|
|
|
const float3 swizzle3 = v.xzy;
|
|
|
|
return;
|
|
|
|
}
|