dawn-cmake/test/intrinsics/modf.wgsl.expected.hlsl
Ben Clayton 9ca78030eb hlsl: Implement modf and frexp
Change-Id: I40b3ad7e2d4811b0a52e75402c7d5ccda090a97c
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53809
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: David Neto <dneto@google.com>
2021-06-09 18:53:57 +00:00

8 lines
126 B
HLSL

[numthreads(1, 1, 1)]
void main() {
float whole = 0.0f;
const float tint_symbol = modf(1.230000019f, whole);
return;
}