mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
16 lines
247 B
Scala
16 lines
247 B
Scala
$input v_pos
|
|
|
|
/*
|
|
* Copyright 2011-2026 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
uniform vec4 u_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = u_color;
|
|
}
|