diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-29 22:54:30 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-29 22:54:30 +0100 |
commit | 71ee6c99e963d96286cae8d0bfc2f20a9c9c920b (patch) | |
tree | c4d290c4a658853436477cb07cd469684c64f8e3 /web/pw-frontend/public/static/shaders/frag/image.glsl | |
parent | 0c6d978442b244ca3f29c1ffdd44b5007ae7ad93 (diff) | |
download | planetwars.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.glsl | 14 |
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); -} |