Provides a screen to draw pixels to with a basic rendering update loop and accepts user input
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
274 B

#ifndef varyings_glsl
#define varyings_glsl
varying vec3 gcv_CurveParam;
varying vec2 gcv_FboTexCoord;
#ifdef USE_COLOR_TEXTURE
varying vec2 gcv_ColorTexCoord;
#endif
#ifdef USE_COLOR_CHANNEL
varying vec4 gcv_Color;
#endif
#endif // varyings_glsl