File: triangles.vert

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

layout(location = 0) in vec4 vPosition;

void
main()
{
   gl_Position = vPosition;
}