vrshoot

view sdr/color.v.glsl @ 2:334d17aed7de

visual studio project files
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 02 Feb 2014 18:36:38 +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 }