Files
itgmania212121/Data/Shaders/GLSL/Shell.vert
T

5 lines
135 B
GLSL
Raw Normal View History

2011-03-12 22:24:28 -08:00
void main() {
vec4 position = vec4(gl_Vertex.xyz + gl_Normal * 0.125, 1.0);
2011-03-12 22:24:28 -08:00
gl_Position = gl_ModelViewProjectionMatrix * position;
}