1
0
mirror of synced 2024-11-15 03:27:38 +01:00
Switch-Toolbox/Toolbox/Shader/Layout/Bflyt.frag

44 lines
913 B
GLSL
Raw Normal View History

#version 330
uniform vec4 blackColor;
2019-09-08 23:03:00 +02:00
uniform vec4 whiteColor;
uniform int hasTexture0;
uniform int debugShading;
uniform int numTextureMaps;
2019-09-08 23:03:00 +02:00
uniform sampler2D textures0;
uniform sampler2D uvTestPattern;
in vec2 uv0;
in vec4 vertexColor0;
out vec4 fragColor;
2019-09-08 23:03:00 +02:00
void main()
{
vec4 textureMap0 = vec4(1);
vec4 textureMap1 = vec4(1);
vec4 textureMap2 = vec4(1);
2019-09-08 23:03:00 +02:00
if (numTextureMaps > 0)
{
if (hasTexture0 == 1)
textureMap0 = texture2D(textures0, uv0);
2019-09-08 23:03:00 +02:00
}
2019-09-08 23:03:00 +02:00
if (debugShading == 0)
{
vec4 colorBlend = textureMap0 * whiteColor;
fragColor = vertexColor0 * colorBlend;
2019-09-08 23:03:00 +02:00
}
else if (debugShading == 5)
fragColor = vec4(textureMap0.rgb, 1);
else if (debugShading == 1)
fragColor = vertexColor0;
else if (debugShading == 2)
fragColor = whiteColor;
else if (debugShading == 3)
fragColor = blackColor;
else if (debugShading == 4)
fragColor = texture2D(uvTestPattern, uv0);
2019-09-08 23:03:00 +02:00
}