summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc')
-rw-r--r--3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc16
1 files changed, 0 insertions, 16 deletions
diff --git a/3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc b/3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc
deleted file mode 100644
index 6f890a6fa63..00000000000
--- a/3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc
+++ /dev/null
@@ -1,16 +0,0 @@
-$input v_texcoord0, v_color0
-
-/*
- * Copyright 2011-2018 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
- */
-
-#include <bgfx_shader.sh>
-
-SAMPLER2D(s_texColor, 0);
-
-void main()
-{
- float alpha = texture2D(s_texColor, v_texcoord0).x;
- gl_FragColor = vec4(v_color0.xyz, v_color0.w * alpha);
-}