mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
9 lines
102 B
Text
9 lines
102 B
Text
|
void main ()
|
||
|
{
|
||
|
vec4 c_1;
|
||
|
c_1.xyz = vec3(0.0, 0.0, 0.0);
|
||
|
c_1.w = 0.0;
|
||
|
gl_FragData[0] = c_1;
|
||
|
}
|
||
|
|