aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/public/static/shaders/frag/image.glsl
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2021-12-29 22:54:30 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2021-12-29 22:54:30 +0100
commit71ee6c99e963d96286cae8d0bfc2f20a9c9c920b (patch)
treec4d290c4a658853436477cb07cd469684c64f8e3 /web/pw-frontend/public/static/shaders/frag/image.glsl
parent0c6d978442b244ca3f29c1ffdd44b5007ae7ad93 (diff)
downloadplanetwars.dev-71ee6c99e963d96286cae8d0bfc2f20a9c9c920b.tar.xz
planetwars.dev-71ee6c99e963d96286cae8d0bfc2f20a9c9c920b.zip
move assets to visualizer package
Diffstat (limited to 'web/pw-frontend/public/static/shaders/frag/image.glsl')
-rw-r--r--web/pw-frontend/public/static/shaders/frag/image.glsl14
1 files changed, 0 insertions, 14 deletions
diff --git a/web/pw-frontend/public/static/shaders/frag/image.glsl b/web/pw-frontend/public/static/shaders/frag/image.glsl
deleted file mode 100644
index 69c8b91..0000000
--- a/web/pw-frontend/public/static/shaders/frag/image.glsl
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifdef GL_ES
-precision mediump float;
-#endif
-
-// Passed in from the vertex shader.
-varying vec2 v_texCoord;
-
-// The texture.
-uniform sampler2D u_texture;
-
-void main() {
- gl_FragColor = texture2D(u_texture, v_texCoord);
-// gl_FragColor = vec4(0.7, 0.7, 0.0, 1.0);
-}