dawn-cmake/test/tint/builtins/modf.wgsl.expected.dxc.hlsl

12 lines
216 B
HLSL

struct modf_result {
float fract;
float whole;
};
[numthreads(1, 1, 1)]
void main() {
const modf_result res = {0.230000019f, 1.0f};
const float fract = res.fract;
const float whole = res.whole;
return;
}