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
11 lines
136 B
GLSL
11 lines
136 B
GLSL
|
|
in vec2 texCoord_interp;
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D image;
|
|
|
|
void main()
|
|
{
|
|
fragColor = texture(image, texCoord_interp);
|
|
}
|