couch/shaders/screen.frag

19 lines
225 B
GLSL
Raw Normal View History

2021-01-19 16:01:37 -06:00
#version 330 core
in vec2 UV;
out vec4 FragColor;
struct Material {
vec3 color;
bool usesColor;
sampler2D tex;
bool usesTex;
};
uniform Material material;
void main() {
FragColor = texture(material.tex, UV);
}