shader_type canvas_item;
uniform sampler2D tex : repeat_enable;
uniform float magic_scale_factor = 1500;
void fragment() {
COLOR = pow(texture(tex, FRAGCOORD.xy/magic_scale_factor), vec4(2.2));
}