This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Tetrahedrons/Platformer/shaders/simple.vert

14 lines
170 B
GLSL

#version 430
uniform ViewMats
{
mat4 model;
mat4 view;
mat4 proj;
};
in vec4 pos;
void main () {
gl_Position = proj * view * model * pos;
}