mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
9 lines
189 B
Text
9 lines
189 B
Text
|
varying highp vec2 xlv_TEXCOORD0;
|
||
|
varying lowp vec4 xlv_COLOR;
|
||
|
uniform sampler2D _FlareTexture;
|
||
|
void main ()
|
||
|
{
|
||
|
gl_FragData[0] = (texture2D (_FlareTexture, xlv_TEXCOORD0) * xlv_COLOR);
|
||
|
}
|
||
|
|