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

Unified Diff: third_party/gles2_book/Chapter_13/ProceduralTextures/checker.vs

Issue 22325003: Deleted third_party/gles2_book. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/gles2_book/Chapter_13/ProceduralTextures/checker.vs
diff --git a/third_party/gles2_book/Chapter_13/ProceduralTextures/checker.vs b/third_party/gles2_book/Chapter_13/ProceduralTextures/checker.vs
deleted file mode 100644
index 88375ba072e56f8a9e994872108c701441339dcf..0000000000000000000000000000000000000000
--- a/third_party/gles2_book/Chapter_13/ProceduralTextures/checker.vs
+++ /dev/null
@@ -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