mirror of
https://github.com/holub/mame
synced 2025-06-02 10:59:52 +03:00
14 lines
252 B
Python
14 lines
252 B
Python
/*
|
|
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "bgfx_shader.sh"
|
|
|
|
uniform vec4 bgfx_clear_color[8];
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = bgfx_clear_color[0];
|
|
}
|