File: lines_frag.glsl

package info (click to toggle)
python-moderngl-window 2.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 69,260 kB
  • sloc: python: 11,225; makefile: 20
file content (8 lines) | stat: -rw-r--r-- 113 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#version 330

uniform vec3 color;
out vec4 fragColor;

void main() {
    fragColor = vec4(color, 1.0);
}