mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-11 23:56:05 +00:00
This makes the output value consistent between different platforms. Change-Id: I4f94da4deac6998c4b809b03ed3b8f58d32bb1b0 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/121501 Commit-Queue: James Price <jrprice@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com>
23 lines
306 B
WebGPU Shading Language
23 lines
306 B
WebGPU Shading Language
enable f16;
|
|
|
|
fn sin_66a59f() {
|
|
var arg_0 = 1.5703125h;
|
|
var res : f16 = sin(arg_0);
|
|
}
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
sin_66a59f();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
@fragment
|
|
fn fragment_main() {
|
|
sin_66a59f();
|
|
}
|
|
|
|
@compute @workgroup_size(1)
|
|
fn compute_main() {
|
|
sin_66a59f();
|
|
}
|