mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-02-16 11:50:19 -05:00
Fixed issue #169. C99 function name mismatch between header and implementation.
This commit is contained in:
parent
8abed27c0c
commit
c7901436a5
1 changed files with 1 additions and 1 deletions
|
@ -3144,7 +3144,7 @@ BGFX_C_API void bgfx_destroy_uniform(bgfx_uniform_handle_t _handle)
|
|||
bgfx::destroyUniform(handle.cpp);
|
||||
}
|
||||
|
||||
BGFX_C_API void bgfx_clear_color(uint8_t _index, const float _rgba[4])
|
||||
BGFX_C_API void bgfx_set_clear_color(uint8_t _index, const float _rgba[4])
|
||||
{
|
||||
bgfx::setClearColor(_index, _rgba);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue