mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 06:03:34 +00:00
Fix unit and WGSL test results. Bug: dawn:1301 Change-Id: Idfe046bdb211c8db9724e02c2f9dfb12d04d5c2a Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/114800 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
18 lines
263 B
GLSL
18 lines
263 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
uniform highp sampler2D arg_0_arg_1;
|
|
|
|
void textureSample_6e64fb() {
|
|
vec4 res = texture(arg_0_arg_1, vec2(1.0f, 0.5f));
|
|
}
|
|
|
|
void fragment_main() {
|
|
textureSample_6e64fb();
|
|
}
|
|
|
|
void main() {
|
|
fragment_main();
|
|
return;
|
|
}
|