mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed GCC warnings.
This commit is contained in:
parent
25002b301d
commit
9fd378b5d9
1 changed files with 3 additions and 0 deletions
|
@ -165,6 +165,7 @@ namespace entry
|
|||
|
||||
int32_t onInputEvent(AInputEvent* _event)
|
||||
{
|
||||
BX_UNUSED(_event);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -203,6 +204,7 @@ namespace entry
|
|||
|
||||
void setWindowSize(uint32_t _width, uint32_t _height)
|
||||
{
|
||||
BX_UNUSED(_width, _height);
|
||||
}
|
||||
|
||||
void toggleWindowFrame()
|
||||
|
@ -211,6 +213,7 @@ namespace entry
|
|||
|
||||
void setMouseLock(bool _lock)
|
||||
{
|
||||
BX_UNUSED(_lock);
|
||||
}
|
||||
|
||||
int32_t MainThreadEntry::threadFunc(void* _userData)
|
||||
|
|
Loading…
Reference in a new issue