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.
37 lines
1.6 KiB
37 lines
1.6 KiB
2 years ago
|
|
||
|
if( gcv_CurveParam.x == 0.0 && gcv_CurveParam.y == 0.0 ) {
|
||
|
// pass-1: Lines
|
||
|
#if defined(USE_COLOR_TEXTURE) && defined(USE_COLOR_CHANNEL)
|
||
|
mgl_FragColor = gcuTexture2D(gcu_ColorTexUnit, gcv_ColorTexCoord.st) * gcv_Color * gcu_ColorStatic;
|
||
|
#elif defined(USE_COLOR_TEXTURE)
|
||
|
mgl_FragColor = gcuTexture2D(gcu_ColorTexUnit, gcv_ColorTexCoord.st) * gcu_ColorStatic;
|
||
|
#elif defined(USE_COLOR_CHANNEL)
|
||
|
mgl_FragColor = gcv_Color * gcu_ColorStatic;
|
||
|
#else
|
||
|
mgl_FragColor = gcu_ColorStatic;
|
||
|
#endif
|
||
|
} else {
|
||
|
// pass-1: curves
|
||
|
vec2 rtex = vec2( abs(gcv_CurveParam.x), abs(gcv_CurveParam.y) - 0.1 );
|
||
|
|
||
|
vec2 dtx = dFdx(rtex);
|
||
|
vec2 dty = dFdy(rtex);
|
||
|
|
||
|
vec2 f = vec2((dtx.y - dtx.x + 2.0*rtex.x*dtx.x), (dty.y - dty.x + 2.0*rtex.x*dty.x));
|
||
|
float position = rtex.y - (rtex.x * (1.0 - rtex.x));
|
||
|
|
||
|
float a = clamp(0.5 - ( position/length(f) ) * sign(gcv_CurveParam.y), 0.0, 1.0);
|
||
|
#if defined(USE_COLOR_TEXTURE) && defined(USE_COLOR_CHANNEL)
|
||
|
vec4 t = gcuTexture2D(gcu_ColorTexUnit, gcv_ColorTexCoord.st);
|
||
|
mgl_FragColor = vec4(t.rgb * gcv_Color.rgb * gcu_ColorStatic.rgb, t.a * gcv_Color.a * gcu_ColorStatic.a * a);
|
||
|
#elif defined(USE_COLOR_TEXTURE)
|
||
|
vec4 t = gcuTexture2D(gcu_ColorTexUnit, gcv_ColorTexCoord.st);
|
||
|
mgl_FragColor = vec4(t.rgb * gcu_ColorStatic.rgb, t.a * gcu_ColorStatic.a * a);
|
||
|
#elif defined(USE_COLOR_CHANNEL)
|
||
|
mgl_FragColor = vec4(gcv_Color.rgb * gcu_ColorStatic.rgb, gcv_Color.a * gcu_ColorStatic.a * a);
|
||
|
#else
|
||
|
mgl_FragColor = vec4(gcu_ColorStatic.rgb, gcu_ColorStatic.a * a);
|
||
|
#endif
|
||
|
}
|
||
|
|