summarylogtreecommitdiffstats
path: root/ccShader_PositionColor.vert.patch
diff options
context:
space:
mode:
Diffstat (limited to 'ccShader_PositionColor.vert.patch')
-rw-r--r--ccShader_PositionColor.vert.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/ccShader_PositionColor.vert.patch b/ccShader_PositionColor.vert.patch
deleted file mode 100644
index a229d6090458..000000000000
--- a/ccShader_PositionColor.vert.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- /opt/cocos2d-x/cocos/renderer/ccShader_PositionColor.vert 2017-03-22 15:13:34.000000000 -0400
-+++ /tmp/ccShader_PositionColor.vert 2017-04-21 06:42:24.365148604 -0400
-@@ -23,20 +23,20 @@
- * THE SOFTWARE.
- */
-
--const char* ccPositionColor_vert = R"(
-+const char* ccPositionColor_vert = STRINGIFY(
-
- attribute vec4 a_position;
- attribute vec4 a_color;
-
--#ifdef GL_ES
-+\n#ifdef GL_ES\n
- varying lowp vec4 v_fragmentColor;
--#else
-+\n#else\n
- varying vec4 v_fragmentColor;
--#endif
-+\n#endif\n
-
- void main()
- {
- gl_Position = CC_MVPMatrix * a_position;
- v_fragmentColor = a_color;
- }
--)";
-+);