2018-06-15 16:18:30 +00:00
|
|
|
STATIC vec4 scale(sampler2D image, vec2 position, vec2 input_resolution, vec2 output_resolution)
|
2016-04-28 20:07:05 +00:00
|
|
|
{
|
2018-06-15 15:08:54 +00:00
|
|
|
vec2 pixel = position * input_resolution - vec2(0.5, 0.5);
|
2016-04-28 20:07:05 +00:00
|
|
|
|
2018-06-15 15:08:54 +00:00
|
|
|
vec4 q11 = texture(image, (floor(pixel) + 0.5) / input_resolution);
|
|
|
|
vec4 q12 = texture(image, (vec2(floor(pixel.x), ceil(pixel.y)) + 0.5) / input_resolution);
|
|
|
|
vec4 q21 = texture(image, (vec2(ceil(pixel.x), floor(pixel.y)) + 0.5) / input_resolution);
|
|
|
|
vec4 q22 = texture(image, (ceil(pixel) + 0.5) / input_resolution);
|
2016-04-28 20:07:05 +00:00
|
|
|
|
2016-06-17 23:05:52 +00:00
|
|
|
vec2 s = smoothstep(0., 1., fract(pixel));
|
2016-04-28 20:07:05 +00:00
|
|
|
|
2018-03-11 14:09:30 +00:00
|
|
|
vec4 r1 = mix(q11, q21, s.x);
|
|
|
|
vec4 r2 = mix(q12, q22, s.x);
|
2016-04-28 20:07:05 +00:00
|
|
|
|
2018-03-11 14:09:30 +00:00
|
|
|
return mix (r1, r2, s.y);
|
2018-06-15 15:08:54 +00:00
|
|
|
}
|