16 lines
301 B
Python
16 lines
301 B
Python
|
$input v_texcoord0, v_color0
|
||
|
|
||
|
/*
|
||
|
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
|
||
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
||
|
*/
|
||
|
|
||
|
#include <bgfx_shader.sh>
|
||
|
|
||
|
SAMPLER2D(s_texColor, 0);
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = texture2D(s_texColor, v_texcoord0) * v_color0;
|
||
|
}
|