bgfx/examples/common/imgui/fs_imgui_texture.sc

17 lines
340 B
Python
Raw Normal View History

2013-04-25 00:01:11 -04:00
$input v_texcoord0, v_color0
/*
2015-01-02 17:43:11 -05:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2013-04-25 00:01:11 -04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#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);
}