mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
11 lines
173 B
Scala
11 lines
173 B
Scala
$input v_color0, v_texcoord0
|
|
|
|
#include "../common.sh"
|
|
|
|
SAMPLER2D(s_tex, 0);
|
|
|
|
void main()
|
|
{
|
|
vec4 texel = texture2D(s_tex, v_texcoord0);
|
|
gl_FragColor = texel * v_color0;
|
|
}
|