Fix shader position abnormal

This commit is contained in:
ZhangMenghe 2015-08-18 17:07:08 +08:00
parent d2bc03f80f
commit 9fbc45171e
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;
}