mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-03-16 18:09:54 -04:00
14 lines
247 B
Python
14 lines
247 B
Python
$input v_color0
|
|
|
|
/*
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "bgfx_shader.sh"
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[0] = v_color0;
|
|
gl_FragData[1] = v_color0;
|
|
}
|