Files
bgfx/examples/common/debugdraw/fs_debugdraw_fill.sc
Branimir Karadžić 4baed6e076 Happy New Year! (#3550)
2026-01-14 16:26:51 +00:00

20 lines
425 B
Python

/*
* Copyright 2011-2026 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#include <bgfx_shader.sh>
uniform vec4 u_params[4];
#define u_lightDir u_params[0].xyz
#define u_shininess u_params[0].w
#define u_skyColor u_params[1].xyz
#define u_groundColor u_params[2].xyz
#define u_matColor u_params[3]
void main()
{
gl_FragColor = u_matColor;
}