recrownedgtk/RecrownedGTK/Graphics/Render/Shaders/default.frag

10 lines
155 B
GLSL
Raw Normal View History

2020-02-17 02:44:21 +00:00
out vec4 outputColor;
in vec2 texCoord;
in vec4 color;
2020-02-17 02:44:21 +00:00
uniform sampler2D texture0;
void main()
{
outputColor = texture(texture0, texCoord) * color;
2020-02-17 02:44:21 +00:00
}