This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bgfx/examples/common/entry/entry_qnx.cpp

49 lines
685 B
C++
Raw Normal View History

2013-04-13 01:54:17 -07:00
/*
2014-02-10 22:07:04 -08:00
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
2013-04-13 01:54:17 -07:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "entry.h"
2013-04-13 01:54:17 -07:00
2013-08-14 21:08:46 -07:00
#if ENTRY_CONFIG_USE_NATIVE && BX_PLATFORM_QNX
2013-04-13 01:54:17 -07:00
#include <stdio.h>
#include "entry.h"
namespace entry
{
const Event* poll()
{
return NULL;
}
void release(const Event* _event)
{
}
void setWindowSize(uint32_t _width, uint32_t _height)
{
}
2014-08-05 20:57:52 +01:00
bool setWindowTitle(const char* _title)
{
BX_UNUSED(_title);
}
2013-04-13 01:54:17 -07:00
void toggleWindowFrame()
{
}
void setMouseLock(bool _lock)
{
}
} // namespace entry
int main(int _argc, char** _argv)
{
entry::main(_argc, _argv);
2013-04-13 01:54:17 -07:00
}
2013-08-14 21:08:46 -07:00
#endif // ENTRY_CONFIG_USE_NATIVE && BX_PLATFORM_QNX