2014-12-13 21:47:48 +00:00
|
|
|
vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 pixel_coords) {
|
2014-03-04 13:52:51 +00:00
|
|
|
vec3 col = Texel(texture, texture_coords).rgb * 2.0;
|
|
|
|
col *= col;
|
|
|
|
return vec4(col, 1.0);
|
2014-12-13 21:47:48 +00:00
|
|
|
}
|