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

Unified Diff: native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert

Issue 23838002: [NaCl SDK] Simplify graphics3d example. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 7 years, 3 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
« no previous file with comments | « native_client_sdk/src/examples/api/graphics_3d/texture.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert
diff --git a/native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert b/native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert
deleted file mode 100644
index da616cb92a43c058daedbc5d31fb4cb25eeab533..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/examples/api/graphics_3d/vertex_shader_es2.vert
+++ /dev/null
@@ -1,12 +0,0 @@
-uniform mat4 a_MVP;
-attribute vec2 a_texCoord;
-attribute vec3 a_color;
-attribute vec4 a_position;
-varying vec3 v_color;
-varying vec2 v_texCoord;
-void main()
-{
- gl_Position = a_MVP * a_position;
- v_color = a_color;
- v_texCoord = a_texCoord;
-}
« no previous file with comments | « native_client_sdk/src/examples/api/graphics_3d/texture.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698