Merge pull request #13445 from ZhangMenghe/v3-shader

[ci skip] Fix shader position abnormal
This commit is contained in:
pandamicro 2015-08-18 17:21:00 +08:00
commit f54791c13d
1 changed files with 1 additions and 1 deletions

View File

@ -11,6 +11,6 @@ varying vec2 v_texCoord;
void main()
{
gl_Position = (CC_PMatrix * CC_MVMatrix) * a_position;
gl_Position = CC_PMatrix * a_position;
v_texCoord = a_texCoord;
}