From a7e118ec0bb7a5cf4ceb6c1c11f675fb9fa8ef67 Mon Sep 17 00:00:00 2001 From: halx99 Date: Mon, 24 Feb 2020 16:13:49 +0800 Subject: [PATCH] Remove unused shader --- cocos/renderer/ccShaders.cpp | 2 +- cocos/renderer/shaders/positionNoMVP.vert | 40 ----------------------- 2 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 cocos/renderer/shaders/positionNoMVP.vert diff --git a/cocos/renderer/ccShaders.cpp b/cocos/renderer/ccShaders.cpp index 7a99565043..3d44b04f23 100644 --- a/cocos/renderer/ccShaders.cpp +++ b/cocos/renderer/ccShaders.cpp @@ -3,6 +3,7 @@ Copyright (c) 2011 Zynga Inc. Copyright (c) 2012 cocos2d-x.org Copyright (c) 2013-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. +Copyright (c) 2020 c4games.com. http://www.cocos2d-x.org @@ -45,7 +46,6 @@ NS_CC_BEGIN #include "renderer/shaders/positionColorLengthTexture.frag" #include "renderer/shaders/positionColorTextureAsPointsize.vert" #include "renderer/shaders/position.vert" -#include "renderer/shaders/positionNoMVP.vert" #include "renderer/shaders/layer_radialGradient.frag" #include "renderer/shaders/ui_Gray.frag" #include "renderer/shaders/positionTextureUColor.vert" diff --git a/cocos/renderer/shaders/positionNoMVP.vert b/cocos/renderer/shaders/positionNoMVP.vert deleted file mode 100644 index b9ba5ce144..0000000000 --- a/cocos/renderer/shaders/positionNoMVP.vert +++ /dev/null @@ -1,40 +0,0 @@ -/**************************************************************************** - Copyright (c) 2016 Chukong Technologies Inc. - - http://www.cocos2d-x.org - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - ****************************************************************************/ - -const char* positionNoMVP_vert = R"( - -attribute vec4 a_position; - -#ifdef GL_ES -varying lowp vec4 v_position; -#else -varying vec4 v_position; -#endif - -void main() -{ - gl_Position = a_position; - v_position = a_position; -} -)";