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
12 lines
209 B
GLSL
12 lines
209 B
GLSL
uniform mat4 ModelViewProjectionMatrix;
|
|
|
|
in vec3 pos;
|
|
in vec2 texCoord;
|
|
out vec2 texCoord_interp;
|
|
|
|
void main(void)
|
|
{
|
|
gl_Position = ModelViewProjectionMatrix * vec4(pos, 1.0);
|
|
texCoord_interp = texCoord;
|
|
}
|