planet-wars/frontend/www/static/shaders/vert/simple.glsl
2019-09-21 10:17:35 +02:00

42 lines
812 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
attribute vec2 a_position;
uniform float u_time;
uniform vec4 u_viewbox; // [x, y, width, height]
uniform vec2 u_resolution;
uniform mat3 u_trans;
uniform mat3 u_trans_next;
uniform bool u_animated;
varying vec2 v_pos;
void main() {
vec3 pos = vec3(a_position, 1.0);
mat3 trans;
if (u_animated) {
trans = (u_trans_next * (1.0 - u_time)) + (u_trans * u_time);
} else {
trans = u_trans;
}
pos = trans * pos;
vec2 uv = pos.xy;
// Viewbox's center is top left, a_position's is in the center to the screen
// So translate and scale the viewbox**
uv -= u_viewbox.xy + (u_viewbox.zw * 0.5);
uv /= u_viewbox.zw * 0.5;
v_pos = (uv.xy + 1.0) * 0.5;
gl_Position = vec4(uv.xy, 0.0, 1.0);
}