bgfx/src/fs_clear0.sc

12 lines
219 B
Python
Raw Normal View History

2013-02-22 00:07:31 -05:00
/*
2015-01-02 17:43:11 -05:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2013-02-22 00:07:31 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
2014-09-01 14:24:51 -04:00
uniform vec4 bgfx_clear_color[8];
2013-02-22 00:07:31 -05:00
void main()
{
2015-05-11 21:17:43 -04:00
gl_FragColor = bgfx_clear_color[0];
2013-02-22 00:07:31 -05:00
}