mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
14 lines
262 B
GLSL
14 lines
262 B
GLSL
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
uniform vec3 cMin, cMax;
|
|
|
|
void main() {
|
|
vec4 c = texture2D( gm_BaseTexture, v_vTexcoord );
|
|
|
|
vec3 cRan = cMax - cMin;
|
|
vec3 col = (c.rgb - cMin) / cRan;
|
|
|
|
gl_FragColor = vec4(col, c.a);
|
|
}
|