您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字

13 行
218 B

  1. #include "ccParamIO.glsl"
  2. #ifdef OPENGL_ES
  3. precision lowp float;
  4. #endif
  5. varying vec4 v_fragmentColor;
  6. varying vec2 v_texCoord;
  7. void main()
  8. {
  9. gl_FragColor = v_fragmentColor * texture2D(CC_Texture0, v_texCoord);
  10. }