Files
wnmj-normal/cocos2d/tests/js-tests/resjs/Shaders/example_Outline.vsh
2026-03-03 13:56:44 +08:00

13 lines
267 B
GLSL

attribute vec4 a_position;
attribute vec2 a_texCoord;
attribute vec4 a_color;
varying vec4 v_fragmentColor;
varying vec2 v_texCoord;
void main()
{
gl_Position = CC_PMatrix * CC_MVMatrix * a_position;
v_fragmentColor = a_color;
v_texCoord = a_texCoord;
}