enigma-3d 0.2.15

A 3D Rendering Engine with a focus on simplicity and ease of use. Far from feature complete and not recommended for production use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#version 140

in vec3 position;
in vec2 texcoord;
in vec3 color;
in vec3 normal;

out vec2 TEXCOORD;


void main() {
    TEXCOORD = texcoord;
    gl_Position = vec4(position, 1.0);
}