24 lines
495 B
WebGPU Shading Language
24 lines
495 B
WebGPU Shading Language
|
@group(1) @binding(0) var arg_0 : texture_2d_array<f32>;
|
||
|
|
||
|
@group(1) @binding(1) var arg_1 : sampler;
|
||
|
|
||
|
fn textureSampleGrad_a09131() {
|
||
|
var res : vec4<f32> = textureSampleGrad(arg_0, arg_1, vec2<f32>(), 1u, vec2<f32>(), vec2<f32>());
|
||
|
}
|
||
|
|
||
|
@vertex
|
||
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
||
|
textureSampleGrad_a09131();
|
||
|
return vec4<f32>();
|
||
|
}
|
||
|
|
||
|
@fragment
|
||
|
fn fragment_main() {
|
||
|
textureSampleGrad_a09131();
|
||
|
}
|
||
|
|
||
|
@compute @workgroup_size(1)
|
||
|
fn compute_main() {
|
||
|
textureSampleGrad_a09131();
|
||
|
}
|