protot/3rdparty/bgfx/examples/common/imgui/fs_imgui_texture.sc

17 lines
347 B
Python
Raw Normal View History

2016-08-29 22:31:11 +02:00
$input v_texcoord0, v_color0
/*
2018-02-03 17:39:28 +01:00
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2016-08-29 22:31:11 +02:00
* 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);
}