dawn-cmake/test/tint/bug/chromium/1417515.wgsl.expected.dxc.hlsl

13 lines
185 B
HLSL

struct modf_result_f32 {
float fract;
float whole;
};
[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void foo() {
const modf_result_f32 s1 = (modf_result_f32)0;
}