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

Side by Side Diff: third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.vs

Issue 543002: Renamed gles_book_examples to gles2_book to make it shorter and more correct.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 11 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
2 uniform mat4 mvp_matrix;
3
4 attribute vec4 a_position;
5 attribute vec2 a_st;
6
7 varying vec2 v_st;
8
9 void
10 main()
11 {
12 v_st = a_st;
13 gl_Position = mvp_matrix * a_position;
14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698