File: color_triangles.frag

package info (click to toggle)
haskell-glut 2.7.0.16-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,844 kB
  • sloc: haskell: 12,054; ansic: 105; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 87 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#version 430 core

in vec4 color;
out vec4 fColor;

void
main()
{
   fColor = color;
}