Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
15 lines
299 B
GLSL
15 lines
299 B
GLSL
|
|
uniform float factor;
|
|
in vec2 texCoord_interp;
|
|
out vec4 fragColor;
|
|
|
|
uniform vec4 color;
|
|
uniform sampler2D image;
|
|
|
|
void main()
|
|
{
|
|
vec4 tex = texture(image, texCoord_interp);
|
|
tex.rgb = ((0.3333333 * factor) * vec3(tex.r + tex.g + tex.b)) + (tex.rgb * (1.0 - factor));
|
|
fragColor = tex * color;
|
|
}
|