mirror of
https://github.com/SangeloDev/SangeFault.git
synced 2024-11-13 00:52:43 +00:00
14 lines
200 B
Text
14 lines
200 B
Text
|
#version 150
|
||
|
|
||
|
uniform sampler2D DiffuseSampler;
|
||
|
|
||
|
uniform vec4 ColorModulate;
|
||
|
|
||
|
in vec2 texCoord;
|
||
|
|
||
|
out vec4 fragColor;
|
||
|
|
||
|
void main(){
|
||
|
fragColor = texture(DiffuseSampler, texCoord) * ColorModulate;
|
||
|
}
|