mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
198 lines
5.4 KiB
GLSL
198 lines
5.4 KiB
GLSL
#define PALETTE_LIMIT 128
|
|
|
|
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
uniform vec2 dimension;
|
|
uniform vec2 samplerDimension;
|
|
|
|
uniform sampler2D samplers;
|
|
uniform float samplerColumn;
|
|
uniform int amount;
|
|
uniform int sampleMode;
|
|
uniform int matchMode;
|
|
|
|
uniform int blendMode;
|
|
uniform float blendIntensity;
|
|
|
|
#region //////////////////////////////////// GRADIENT ////////////////////////////////////
|
|
#define GRADIENT_LIMIT 128
|
|
|
|
uniform int gradient_blend;
|
|
uniform vec4 gradient_color[GRADIENT_LIMIT];
|
|
uniform float gradient_time[GRADIENT_LIMIT];
|
|
uniform int gradient_keys;
|
|
uniform int gradient_use_map;
|
|
uniform vec4 gradient_map_range;
|
|
uniform sampler2D gradient_map;
|
|
|
|
vec3 linearToGamma(vec3 c) { return pow(c, vec3( 2.2)); }
|
|
vec3 gammaToLinear(vec3 c) { return pow(c, vec3(1. / 2.2)); }
|
|
|
|
vec3 rgbMix(vec3 c1, vec3 c2, float t) { #region
|
|
vec3 k1 = linearToGamma(c1);
|
|
vec3 k2 = linearToGamma(c2);
|
|
|
|
return gammaToLinear(mix(k1, k2, t));
|
|
} #endregion
|
|
|
|
vec3 rgb2oklab(vec3 c) { #region
|
|
const mat3 kCONEtoLMS = mat3(
|
|
0.4121656120, 0.2118591070, 0.0883097947,
|
|
0.5362752080, 0.6807189584, 0.2818474174,
|
|
0.0514575653, 0.1074065790, 0.6302613616);
|
|
|
|
c = pow(c, vec3(2.2));
|
|
c = pow( kCONEtoLMS * c, vec3(1.0 / 3.0) );
|
|
|
|
return c;
|
|
} #endregion
|
|
|
|
vec3 oklab2rgb(vec3 c) { #region
|
|
const mat3 kLMStoCONE = mat3(
|
|
4.0767245293, -1.2681437731, -0.0041119885,
|
|
-3.3072168827, 2.6093323231, -0.7034763098,
|
|
0.2307590544, -0.3411344290, 1.7068625689);
|
|
|
|
c = kLMStoCONE * (c * c * c);
|
|
c = pow(c, vec3(1. / 2.2));
|
|
|
|
return c;
|
|
} #endregion
|
|
|
|
vec3 oklabMax(vec3 c1, vec3 c2, float t) { #region
|
|
vec3 k1 = rgb2oklab(c1);
|
|
vec3 k2 = rgb2oklab(c2);
|
|
|
|
return oklab2rgb(mix(k1, k2, t));
|
|
} #endregion
|
|
|
|
vec3 rgb2hsv(vec3 c) { #region
|
|
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
|
|
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
|
|
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
|
|
|
|
float d = q.x - min(q.w, q.y);
|
|
float e = 0.0000000001;
|
|
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
|
|
} #endregion
|
|
|
|
vec3 hsv2rgb(vec3 c) { #region
|
|
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
|
|
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
|
|
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
|
|
} #endregion
|
|
|
|
float hueDist(float a0, float a1, float t) { #region
|
|
float da = fract(a1 - a0);
|
|
float ds = fract(2. * da) - da;
|
|
return a0 + ds * t;
|
|
} #endregion
|
|
|
|
vec3 hsvMix(vec3 c1, vec3 c2, float t) { #region
|
|
vec3 h1 = rgb2hsv(c1);
|
|
vec3 h2 = rgb2hsv(c2);
|
|
|
|
vec3 h = vec3(0.);
|
|
h.x = h.x + hueDist(h1.x, h2.x, t);
|
|
h.y = mix(h1.y, h2.y, t);
|
|
h.z = mix(h1.z, h2.z, t);
|
|
|
|
return hsv2rgb(h);
|
|
} #endregion
|
|
|
|
vec4 gradientEval(in float prog) { #region
|
|
if(gradient_use_map == 1) {
|
|
vec2 samplePos = mix(gradient_map_range.xy, gradient_map_range.zw, prog);
|
|
return texture2D( gradient_map, samplePos );
|
|
}
|
|
|
|
vec4 col = vec4(0.);
|
|
|
|
for(int i = 0; i < GRADIENT_LIMIT; i++) {
|
|
if(gradient_time[i] == prog) {
|
|
col = gradient_color[i];
|
|
break;
|
|
} else if(gradient_time[i] > prog) {
|
|
if(i == 0)
|
|
col = gradient_color[i];
|
|
else {
|
|
float t = (prog - gradient_time[i - 1]) / (gradient_time[i] - gradient_time[i - 1]);
|
|
vec3 c0 = gradient_color[i - 1].rgb;
|
|
vec3 c1 = gradient_color[i].rgb;
|
|
float a = mix(gradient_color[i - 1].a, gradient_color[i].a, t);
|
|
|
|
if(gradient_blend == 0)
|
|
col = vec4(mix(c0, c1, t), a);
|
|
|
|
else if(gradient_blend == 1)
|
|
col = gradient_color[i - 1];
|
|
|
|
else if(gradient_blend == 2)
|
|
col = vec4(hsvMix(c0, c1, t), a);
|
|
|
|
else if(gradient_blend == 3)
|
|
col = vec4(oklabMax(c0, c1, t), a);
|
|
|
|
else if(gradient_blend == 4)
|
|
col = vec4(rgbMix(c0, c1, t), a);
|
|
}
|
|
break;
|
|
}
|
|
if(i >= gradient_keys - 1) {
|
|
col = gradient_color[gradient_keys - 1];
|
|
break;
|
|
}
|
|
}
|
|
|
|
return col;
|
|
} #endregion
|
|
|
|
#endregion //////////////////////////////////// GRADIENT ////////////////////////////////////
|
|
|
|
float bright(vec4 c) { return dot(c.rgb, vec3(0.2126, 0.7152, 0.0722)); }
|
|
|
|
float colorCompare(vec4 c1, vec4 c2) {
|
|
if(matchMode == 0) return abs(bright(c1) - bright(c2));
|
|
else if(matchMode == 1) return distance(c1.rgb, c2.rgb);
|
|
else if(matchMode == 2) return abs(rgb2hsv(c1.rgb)[0] - rgb2hsv(c2.rgb)[0]);
|
|
|
|
return 0.;
|
|
}
|
|
|
|
void main() {
|
|
vec2 tx = v_vTexcoord * dimension;
|
|
vec2 ftx = mod(tx, samplerDimension);
|
|
vec2 stx = tx - ftx;
|
|
|
|
vec4 base = texture2D( gm_BaseTexture, stx / dimension);
|
|
// gl_FragColor = vec4(ftx / samplerDimension, 0., 1.); return;
|
|
|
|
int matchIndex = 0;
|
|
float minDiff = 9999.;
|
|
|
|
for(int i = 0; i < amount; i++) {
|
|
vec4 clr = gradientEval(float(i) / (float(amount) - 1.));
|
|
float dif = colorCompare(base, clr);
|
|
|
|
if(dif < minDiff) {
|
|
minDiff = dif;
|
|
matchIndex = i;
|
|
}
|
|
}
|
|
|
|
float row = floor(float(matchIndex) / samplerColumn);
|
|
float col = float(matchIndex) - row * samplerColumn;
|
|
|
|
float tsx = col * samplerDimension.x;
|
|
float tsy = row * samplerDimension.y;
|
|
vec2 tpos = vec2(tsx, tsy) + ftx;
|
|
|
|
vec4 samp = texture2D( samplers, tpos / 8192.);
|
|
vec4 smpb = samp;
|
|
|
|
if(blendMode == 1) smpb = samp * base;
|
|
|
|
gl_FragColor = mix(samp, smpb, blendIntensity);
|
|
}
|