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