From 94006e599c8d591096b768d1cd0c8b75eb763c45 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sun, 17 Sep 2017 20:50:36 +0500 Subject: 2017-09-17 --- cwd/shaders/gui.fs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 cwd/shaders/gui.fs (limited to 'cwd/shaders/gui.fs') diff --git a/cwd/shaders/gui.fs b/cwd/shaders/gui.fs deleted file mode 100644 index 95196b9..0000000 --- a/cwd/shaders/gui.fs +++ /dev/null @@ -1,21 +0,0 @@ -#version 330 core - -in vec2 uv; - -uniform vec4 widgetTexture; -uniform sampler2D textureAtlas; - -vec2 TransformTextureCoord(vec4 TextureAtlasCoords, vec2 UvCoords) { - float x = TextureAtlasCoords.x; - float y = TextureAtlasCoords.y; - float w = TextureAtlasCoords.z; - float h = TextureAtlasCoords.w; - vec2 A = vec2(x, 1 - y - h); - vec2 B = vec2(x + w, 1 - y); - return A + UvCoords * (B - A); -} - -void main(){ - vec4 color = texture(textureAtlas,TransformTextureCoord(widgetTexture,uv)); - gl_FragColor = color; -} \ No newline at end of file -- cgit v1.2.3