mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
12 lines
242 B
Scala
12 lines
242 B
Scala
/*
|
|
* Copyright 2013-2014 Dario Manesku. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor.xyz = vec3_splat(0.0);
|
|
gl_FragColor.w = 1.0;
|
|
}
|