generated from sigonasr2/JavaProjectTemplate
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.
19 lines
274 B
19 lines
274 B
2 years ago
|
|
||
|
#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
|
||
|
|