vrshoot

view sdr/color.v.glsl @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line source
1 attribute vec4 attr_vertex;
3 uniform mat4 st_world_matrix, st_view_matrix, st_proj_matrix;
5 void main()
6 {
7 gl_Position = (st_proj_matrix * st_view_matrix * st_world_matrix) * attr_vertex;
8 }