16 lines
248 B
Scala
16 lines
248 B
Scala
$input v_pos
|
|
|
|
/*
|
|
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
uniform vec4 u_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = u_color;
|
|
}
|