KlassischeKeplerKriege/game/renderer_polygon_3d/particle.vert
2016-09-29 04:24:14 +02:00

17 lines
No EOL
329 B
GLSL

R"raw_string(
#version 120
attribute vec2 in_vertex;
attribute vec2 in_position;
attribute vec2 in_velocity;
varying vec2 vertex;
uniform float time;
uniform float size;
void main()
{
vec2 p = size*in_vertex;
p += time * in_velocity;
p += in_position;
gl_Position = vec4(p, 0.0, 1.0);
vertex = in_vertex;
}
)raw_string"