source: trunk/tests/gui_test/gui.vert @ 127

Last change on this file since 127 was 127, checked in by epyon, 12 years ago
  • gui_test test project
File size: 287 bytes
RevLine 
[127]1#version 120
2attribute vec2 coord;
3attribute vec2 tcoord;
4attribute vec4 color;
5uniform mat4 projection;
6varying vec4 f_color;
7varying vec2 f_tcoord;
8
9void main(void) {
10        f_color  = color;
11        f_tcoord = tcoord;
12        gl_Position = projection * vec4( coord.x, coord.y, 0.0, 1.0 );
13}
Note: See TracBrowser for help on using the repository browser.