bgfx/examples/common/imgui/fs_imgui_texture.sc

17 lines
347 B
Python
Raw Normal View History

2013-04-25 00:01:11 -04:00
$input v_texcoord0, v_color0
/*
2016-01-01 03:11:04 -05:00
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-04-25 00:01:11 -04:00
*/
#include <bgfx_shader.sh>
2014-08-12 01:02:46 -04:00
SAMPLER2D(s_texColor, 0);
2013-04-25 00:01:11 -04:00
void main()
{
2014-08-12 01:02:46 -04:00
float alpha = texture2D(s_texColor, v_texcoord0).x;
2013-04-25 00:01:11 -04:00
gl_FragColor = vec4(v_color0.xyz, v_color0.w * alpha);
}