File: 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 (8 lines) | stat: -rw-r--r-- 90 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
#version 430 core

out vec4 fColor;
void
main()
{
   fColor = vec4(0.0, 0.0, 1.0, 1.0);
}