mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +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>
20 lines
279 B
WebGPU Shading Language
20 lines
279 B
WebGPU Shading Language
fn clamp_96e56a() {
|
|
var res = clamp(1.0, 1.0, 1.0);
|
|
}
|
|
|
|
@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();
|
|
}
|