dawn-cmake/test/ptr_ref/access/vector.wgsl.expected.hlsl

8 lines
102 B
HLSL

[numthreads(1, 1, 1)]
void main() {
float3 v = float3(1.0f, 2.0f, 3.0f);
v.y = 5.0f;
return;
}