This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
api8/shaders/manif.fs
2023-05-08 10:23:45 +02:00

8 lines
116 B
GLSL

#version 330
in float il;
out vec4 fragColor;
void main() {
fragColor = il * vec4(0.35f, 0.35f, 0.43f, 1.0f);
}