bgfx/examples/common/debugdraw/fs_debugdraw_fill_texture.sc

16 lines
300 B
Python
Raw Normal View History

2016-12-20 09:13:15 +03:00
$input v_texcoord0, v_color0
/*
2023-01-14 21:05:12 +03:00
* Copyright 2011-2023 Branimir Karadzic. All rights reserved.
2022-01-15 22:59:06 +03:00
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2016-12-20 09:13:15 +03:00
*/
#include <bgfx_shader.sh>
SAMPLER2D(s_texColor, 0);
void main()
{
gl_FragColor = texture2D(s_texColor, v_texcoord0) * v_color0;
}