bgfx/3rdparty/glslang/Test/spv.samplePosition.frag
Branimir Karadžić 88f6d1b0c0 Updated glslang.
2017-11-24 00:20:36 -08:00

12 lines
194 B
GLSL

#version 450
layout(location = 0) in vec4 samp;
layout(location = 0) out vec4 color;
void main()
{
if (gl_SamplePosition.y < 0.5)
color = samp;
else
color = 2 * samp;
}