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

Unified Diff: native_client_sdk/src/examples/hello_world_instance3d/vertex_shader_es2.vert

Issue 15011003: ppapi_simple (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright Created 7 years, 7 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: native_client_sdk/src/examples/hello_world_instance3d/vertex_shader_es2.vert
diff --git a/native_client_sdk/src/examples/hello_world_instance3d/vertex_shader_es2.vert b/native_client_sdk/src/examples/hello_world_instance3d/vertex_shader_es2.vert
deleted file mode 100644
index da616cb92a43c058daedbc5d31fb4cb25eeab533..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/examples/hello_world_instance3d/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/hello_world_instance3d/matrix.cc ('k') | native_client_sdk/src/libraries/nacl_io/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698