cocosd-x例子图片变灰问题

example_GreyScale.fsh

#ifdef GL_ES
precision mediump float;
#endif

varying vec4 v_fragmentColor;
varying vec2 v_texCoord;

void main(void)
{
	vec4 c = texture2D(CC_Texture0, v_texCoord);
	gl_FragColor.xyz = vec3(0.2126*c.r + 0.7152*c.g + 0.0722*c.b);
	gl_FragColor.w = c.w;
}

但是黑色的图片怎么变灰

重复帖子:http://forum.cocos.com/t/cocos2d-x-bug/48991