mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-15 16:30:08 +00:00
e67f6f85a4
Previously, we would generate parentheses proactively when generating binary ops, however, this leads to uglier code and hits warnings in compilers when used as a conditional.
16 lines
251 B
GLSL
16 lines
251 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
precision highp int;
|
|
|
|
layout(binding = 0) uniform mediump sampler2D uTex;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
in vec4 vColor;
|
|
in vec2 vTex;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vColor * texture(uTex, vTex);
|
|
}
|
|
|