mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-02 20:51:45 +00:00
Bug: tint:1581 Change-Id: Icffaf023021e704b3beaacf35136a9d6263b31e3 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/97221 Commit-Queue: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
23 lines
348 B
WebGPU Shading Language
23 lines
348 B
WebGPU Shading Language
fn clamp_96e56a() {
|
|
const arg_0 = 1.0;
|
|
const arg_1 = 1.0;
|
|
const arg_2 = 1.0;
|
|
var res = clamp(arg_0, arg_1, arg_2);
|
|
}
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
clamp_96e56a();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
@fragment
|
|
fn fragment_main() {
|
|
clamp_96e56a();
|
|
}
|
|
|
|
@compute @workgroup_size(1)
|
|
fn compute_main() {
|
|
clamp_96e56a();
|
|
}
|