23 lines
394 B
WebGPU Shading Language
23 lines
394 B
WebGPU Shading Language
fn max_a93419() {
|
|
var res : vec4<f32> = max(vec4<f32>(1.0f), vec4<f32>(1.0f));
|
|
prevent_dce = res;
|
|
}
|
|
|
|
@group(2) @binding(0) var<storage, read_write> prevent_dce : vec4<f32>;
|
|
|
|
@vertex
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
max_a93419();
|
|
return vec4<f32>();
|
|
}
|
|
|
|
@fragment
|
|
fn fragment_main() {
|
|
max_a93419();
|
|
}
|
|
|
|
@compute @workgroup_size(1)
|
|
fn compute_main() {
|
|
max_a93419();
|
|
}
|