9e957d466f
Server listens correctly with threads and stdin reader thread. Client does nothing currently gutting UDP_Write for a UDPbase class introduced in this commit.
18 lines
314 B
GLSL
18 lines
314 B
GLSL
/* vim: set ft=c: */
|
|
|
|
#version 440 core
|
|
|
|
layout(location = 0) in vec3 aPos;
|
|
layout(location = 1) in vec2 aTexCoord;
|
|
|
|
out vec2 iTexCoord;
|
|
|
|
uniform mat4 Model;
|
|
uniform mat4 View;
|
|
uniform mat4 Projection;
|
|
|
|
void main(void) {
|
|
gl_Position = Projection * View * Model * vec4(aPos, 1.0f);
|
|
iTexCoord = aTexCoord;
|
|
}
|