mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-10 07:32:43 +00:00
a50683c84e
basically starting over... this is gonna be fun!
13 lines
200 B
GLSL
13 lines
200 B
GLSL
#version 150
|
|
|
|
uniform sampler2D DiffuseSampler;
|
|
|
|
uniform vec4 ColorModulate;
|
|
|
|
in vec2 texCoord;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main(){
|
|
fragColor = texture(DiffuseSampler, texCoord) * ColorModulate;
|
|
}
|