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

Unified Diff: third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.fs

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.fs
===================================================================
--- third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.fs (revision 35873)
+++ third_party/gles_book_examples/Chapter_13/ProceduralTextures/checker.fs (working copy)
@@ -1,21 +0,0 @@
-#ifdef GL_ES
-precision highp float;
-#endif
-
-uniform int frequency;
-uniform vec4 color0;
-uniform vec4 color1;
-
-varying vec2 v_st;
-
-void
-main()
-{
- float s, t, delta;
-
- s = mod(floor(v_st.x * float(frequency * 2)), 2.0);
- t = mod(floor(v_st.y * float(frequency * 2)), 2.0);
- delta = abs(s - t);
-
- gl_FragColor = mix(color1, color0, delta);
-}

Powered by Google App Engine
This is Rietveld 408576698