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
Diamond/hexworld/res/direct.vs.glsl

13 lines
145 B
GLSL

#version 440
in vec3 v;
in vec3 pos;
uniform mat4 proj;
uniform mat4 view;
void main ()
{
gl_Position = proj * view * vec4(pos + v, 1);
}