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

9 lines
116 B
Forth
Raw Normal View History

2023-05-01 01:00:50 +02:00
#version 330
2023-05-08 10:23:45 +02:00
in float il;
2023-05-01 01:00:50 +02:00
out vec4 fragColor;
void main() {
2023-05-08 10:23:45 +02:00
fragColor = il * vec4(0.35f, 0.35f, 0.43f, 1.0f);
2023-05-01 01:00:50 +02:00
}