SPIRV-Cross/shaders/frag/swizzle.frag

18 lines
518 B
GLSL
Raw Normal View History

2016-03-02 17:09:16 +00:00
#version 310 es
precision mediump float;
layout(binding = 0) uniform sampler2D samp;
2016-03-02 17:09:16 +00:00
layout(location = 0) out vec4 FragColor;
layout(location = 1) in vec3 vNormal;
layout(location = 2) in vec2 vUV;
void main()
{
FragColor = vec4(texture(samp, vUV).xyz, 1.0);
FragColor = vec4(texture(samp, vUV).xz, 1.0, 4.0);
FragColor = vec4(texture(samp, vUV).xx, texture(samp, vUV + vec2(0.1)).yy);
FragColor = vec4(vNormal, 1.0);
FragColor = vec4(vNormal + 1.8, 1.0);
FragColor = vec4(vUV, vUV + 1.8);
}