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:38:45 +02:00

10 lines
149 B
GLSL

#version 330
in float intensite_eclairage;
out vec4 fragColor;
uniform vec4 couleur;
void main() {
fragColor = intensite_eclairage * couleur;
}