File: line.fragment.glsl

package info (click to toggle)
gl-image-display 0.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 256 kB
  • sloc: ansic: 1,003; cpp: 794; makefile: 102; python: 47
file content (11 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
/* -*- c -*- */
#version 330

layout(location = 0) out vec4 frag_color;

uniform vec3 line_color_rgb;

void main(void)
{
    frag_color = vec4(line_color_rgb, 1.);
}