diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /third_party/rust/naga/test-data/quad.wgsl | |
parent | Initial commit. (diff) | |
download | firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.tar.xz firefox-2aa4a82499d4becd2284cdb482213d541b8804dd.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/rust/naga/test-data/quad.wgsl')
-rw-r--r-- | third_party/rust/naga/test-data/quad.wgsl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/third_party/rust/naga/test-data/quad.wgsl b/third_party/rust/naga/test-data/quad.wgsl new file mode 100644 index 0000000000..16cbd2698a --- /dev/null +++ b/third_party/rust/naga/test-data/quad.wgsl @@ -0,0 +1,25 @@ +# vertex +const c_scale: f32 = 1.2; +[[location(0)]] var<in> a_pos : vec2<f32>; +[[location(1)]] var<in> a_uv : vec2<f32>; +[[location(0)]] var<out> v_uv : vec2<f32>; +[[builtin(position)]] var<out> o_position : vec4<f32>; + +[[stage(vertex)]] +fn main() -> void { + v_uv = a_uv; + o_position = vec4<f32>(c_scale * a_pos, 0.0, 1.0); + return; +} + +# fragment +[[location(0)]] var<in> v_uv : vec2<f32>; +[[group(0), binding(0)]] var u_texture : texture_sampled_2d<f32>; +[[group(0), binding(1)]] var u_sampler : sampler; +[[location(0)]] var<out> o_color : vec4<f32>; + +[[stage(fragment)]] +fn main() -> void { + o_color = textureSample(u_texture, u_sampler, v_uv); + return; +} |