SNKRX/assets/shaders/full_combine.frag

5 lines
157 B
GLSL

vec4 effect(vec4 vcolor, Image texture, vec2 tc, vec2 pc) {
vec4 tex_color = Texel(texture, tc);
return vec4(vcolor.rgb + tex_color.rgb, tex_color.a);
}