mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
16 lines
340 B
Scala
16 lines
340 B
Scala
$input v_texcoord0, v_color0
|
|
|
|
/*
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
SAMPLER2D(u_texColor, 0);
|
|
|
|
void main()
|
|
{
|
|
float alpha = texture2D(u_texColor, v_texcoord0).x;
|
|
gl_FragColor = vec4(v_color0.xyz, v_color0.w * alpha);
|
|
}
|