forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
#version 450
|
||||
|
||||
// World to view projection matrix to correctly position the vertex on screen
|
||||
uniform mat4 WVP;
|
||||
|
||||
// Position vector of the current vertex in local space
|
||||
in vec3 pos;
|
||||
|
||||
void main() {
|
||||
gl_Position = WVP * vec4(pos, 1.0);
|
||||
}
|
Reference in New Issue
Block a user