This website requires JavaScript.
Explore
Help
Sign In
encounter
/
dawn-cmake
mirror of
https://github.com/encounter/dawn-cmake.git
Watch
1
Star
0
Fork
You've already forked dawn-cmake
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7517e213cf
dawn-cmake
/
test
/
tint
/
shader_io
/
vertex_output_builtins.wgsl
5 lines
94 B
WebGPU Shading Language
Raw
Normal View
History
Unescape
Escape
Update src/tint unittests to new @stage format. This CL updates all of the Tint unittests to the new @stage shorter syntax. This also updates the WGSL writer to emit the new short forms instead of using the deprecated form. Bug: tint:1503 Change-Id: I8c49e5319a19cccb5b4b5078f3ab39c50f31a9a8 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/92483 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
2022-06-07 13:55:34 +00:00
@
vertex
wgsl: Replace [[decoration]] with @decoration Deprecate the old syntax. Migrate everything to the new syntax. Bug: tint:1382 Change-Id: Ide12b2e927b17dc93b9714c7049090864cc568d3 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/77260 Reviewed-by: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Commit-Queue: David Neto <dneto@google.com>
2022-01-19 22:46:57 +00:00
fn
main
(
)
->
@
builtin
(
position
)
vec4
<
f32
>
{
test: Add E2E test coverage for shader IO This provides much more complete coverage than what we have in the unit tests. We now test: - All builtins, for all stages, both struct and non-struct - Multiple location attributes for vertex and fragment stages, both struct and non-struct - Mixing builtins and location attributes, whilst mixing struct and non-struct - A few "interesting" cases of IO structs being shared between different functions, stages, and with an SSBO variable There are 7 skipped tests for MSL due to two different MSL bugs which will be fixed in upcoming patches. Change-Id: I8b802591762c8ff018e01bf37838551e353162b1 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/53120 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Auto-Submit: James Price <jrprice@google.com>
2021-06-03 09:38:34 +00:00
return
vec4
<
f32
>
(
1.0
,
2.0
,
3.0
,
4.0
)
;
}