dawn-cmake/test/tint/shader_io/compute_workgroup_expression.wgsl.expected.glsl
dan sinclair e214a130dd Run substitute_overrides for all tests.
This CL updates all of the integration tests to run the substitute_override
transform where needed. The test runner is updated to match comments in
the spvasm files as well as the wgsl files.

Bug: tint:1155
Change-Id: I8187d426970d056d744e530ed6447e4ec69db5f4
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/101661
Reviewed-by: Ben Clayton <bclayton@google.com>
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-09-09 16:04:39 +00:00

11 lines
149 B
GLSL

#version 310 es
void tint_symbol() {
}
layout(local_size_x = 3, local_size_y = 2, local_size_z = 3) in;
void main() {
tint_symbol();
return;
}