prosperon/shaders/outlinevert.glsl

15 lines
286 B
Plaintext
Raw Normal View History

2022-06-21 23:16:14 -05:00
#version 330 core
layout (location = 0) in vec3 aPos;
layout (location = 1) in vec3 aNormal;
layout (std140) uniform Matrices {
mat4 projection;
mat4 view;
};
uniform mat4 model;
void main()
{
gl_Position = projection * view * model * vec4(aPos + (aNormal * 2.f), 1.f);
}