| Index: visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/vertex_shader_es2.vert
|
| diff --git a/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/vertex_shader_es2.vert b/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/vertex_shader_es2.vert
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..da616cb92a43c058daedbc5d31fb4cb25eeab533
|
| --- /dev/null
|
| +++ b/visual_studio/NativeClientVSAddIn/InstallerResources/examples/hello_world_gles/hello_world_gles/vertex_shader_es2.vert
|
| @@ -0,0 +1,12 @@
|
| +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;
|
| +}
|
|
|