mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-23 07:13:58 -04:00
* added cel-shading and outline using inverted hull example * new screenshot * added glsl100+120 compat * updated view * unnecessary spacing
8 lines
98 B
GLSL
8 lines
98 B
GLSL
#version 330
|
|
|
|
out vec4 finalColor;
|
|
|
|
void main() {
|
|
finalColor = vec4(0.05, 0.05, 0.05, 1.0);
|
|
}
|