dawn-cmake/test/tint/ptr_ref/load/param/private/vec4_f32.wgsl.expected.fxc....

12 lines
184 B
HLSL

float4 func(inout float4 pointer) {
return pointer;
}
static float4 P = float4(0.0f, 0.0f, 0.0f, 0.0f);
[numthreads(1, 1, 1)]
void main() {
const float4 r = func(P);
return;
}