File: glarea-gl.vs.glsl

package info (click to toggle)
gtkmm3.0 3.24.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,820 kB
  • sloc: xml: 121,513; cpp: 8,659; makefile: 286; sh: 203; python: 6
file content (8 lines) | stat: -rw-r--r-- 120 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
#version 330

layout(location = 0) in vec4 position;
uniform mat4 mvp;

void main() {
  gl_Position = mvp * position;
}