mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-15 17:45:58 +00:00
Bug: tint:1301 Change-Id: Id3a591a2fa0dfdb112046d5c57defbae07483e0d Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/69480 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Stephen White <senorblanco@chromium.org>
20 lines
264 B
GLSL
20 lines
264 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
uniform highp samplerCube arg_0;
|
|
|
|
|
|
void textureSample_ea7030() {
|
|
float res = texture(arg_0, vec3(0.0f, 0.0f, 0.0f)).x;
|
|
}
|
|
|
|
void fragment_main() {
|
|
textureSample_ea7030();
|
|
return;
|
|
}
|
|
void main() {
|
|
fragment_main();
|
|
}
|
|
|
|
|