mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-16 12:21:35 +00:00
Fixed: tint:1865 Change-Id: I245bd36b12ff23977c2e69deee27f976db820849 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/123900 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
15 lines
353 B
GLSL
15 lines
353 B
GLSL
#version 310 es
|
|
#extension GL_AMD_gpu_shader_half_float : require
|
|
precision highp float;
|
|
|
|
layout(location = 0) out vec4 value;
|
|
vec4 tint_symbol() {
|
|
return vec4(0.10000000149011611938f, 0.20000000298023223877f, 0.30000001192092895508f, 0.40000000596046447754f);
|
|
}
|
|
|
|
void main() {
|
|
vec4 inner_result = tint_symbol();
|
|
value = inner_result;
|
|
return;
|
|
}
|