diff options
| author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-22 13:59:13 +0100 |
|---|---|---|
| committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-22 13:59:13 +0100 |
| commit | 96ee00242f350b391dcc1cf4d72a442c969f565e (patch) | |
| tree | a9c57feb105200556c76559b3c775d159c98aef9 /web/pw-frontend/public/static/shaders/frag/vor.glsl | |
| parent | 218ebc3b8f5024a0813f8378b83d91dbb9aa7db2 (diff) | |
| download | planetwars.dev-96ee00242f350b391dcc1cf4d72a442c969f565e.tar.xz planetwars.dev-96ee00242f350b391dcc1cf4d72a442c969f565e.zip | |
add pw-frontend
Diffstat (limited to 'web/pw-frontend/public/static/shaders/frag/vor.glsl')
| -rw-r--r-- | web/pw-frontend/public/static/shaders/frag/vor.glsl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/web/pw-frontend/public/static/shaders/frag/vor.glsl b/web/pw-frontend/public/static/shaders/frag/vor.glsl new file mode 100644 index 0000000..faaa68f --- /dev/null +++ b/web/pw-frontend/public/static/shaders/frag/vor.glsl @@ -0,0 +1,18 @@ +#ifdef GL_ES +precision mediump float; +#endif + +#define PI 3.141592 + +uniform float u_step_interval; +uniform float u_time; +uniform bool u_vor; + +varying float v_intensity; +varying float v_dist; +varying vec3 v_color; +varying vec2 v_pos; + +void main() { + gl_FragColor = vec4(v_color, (1.0 - pow(1.0 - v_intensity, 1.23)) * 0.7); +} |
