Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/vertex_shader_es2.vert

Issue 10825290: NaCl VS Add-in hello_world_gles example (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 uniform mat4 a_MVP;
2 attribute vec2 a_texCoord;
3 attribute vec3 a_color;
4 attribute vec4 a_position;
5 varying vec3 v_color;
6 varying vec2 v_texCoord;
7 void main()
8 {
9 gl_Position = a_MVP * a_position;
10 v_color = a_color;
11 v_texCoord = a_texCoord;
12 }
OLDNEW
« no previous file with comments | « visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/matrix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698