summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/tools/texturev/fs_texture.sc
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/tools/texturev/fs_texture.sc')
-rw-r--r--3rdparty/bgfx/tools/texturev/fs_texture.sc9
1 files changed, 3 insertions, 6 deletions
diff --git a/3rdparty/bgfx/tools/texturev/fs_texture.sc b/3rdparty/bgfx/tools/texturev/fs_texture.sc
index 380888eee1f..d25cc94272f 100644
--- a/3rdparty/bgfx/tools/texturev/fs_texture.sc
+++ b/3rdparty/bgfx/tools/texturev/fs_texture.sc
@@ -5,15 +5,12 @@ $input v_texcoord0, v_color0
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
-#include <bgfx_shader.sh>
+#include "common.sh"
SAMPLER2D(s_texColor, 0);
-uniform vec4 u_params;
-#define u_textureLod u_params.x
-
void main()
{
- vec4 color = texture2DLod(s_texColor, v_texcoord0, u_textureLod);
- gl_FragColor = color * v_color0;
+ vec4 color = texture2DLod(s_texColor, v_texcoord0.xy, u_textureLod);
+ gl_FragColor = toEv(color * v_color0);
}