mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
11 lines
157 B
GLSL
11 lines
157 B
GLSL
#version 330 core
|
|
|
|
layout (location=0) in vec3 aPos;
|
|
|
|
uniform mat4 model;
|
|
uniform mat4 lightMat;
|
|
|
|
void main(){
|
|
gl_Position=lightMat*model*vec4(aPos,1);
|
|
}
|