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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.vs
===================================================================
--- third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.vs (revision 35873)
+++ third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.vs (working copy)
@@ -1,14 +0,0 @@
-
-uniform mat4 mvp_matrix;
-
-attribute vec4 a_position;
-attribute vec2 a_st;
-
-varying vec2 v_st;
-
-void
-main()
-{
- v_st = a_st;
- gl_Position = mvp_matrix * a_position;
-}

Powered by Google App Engine
This is Rietveld 408576698