mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Merge branch 'master' of github.com:bkaradzic/bgfx
This commit is contained in:
commit
9a20f4ff31
2 changed files with 41 additions and 1 deletions
40
examples/common/entry/entry_asmjs.cpp
Normal file
40
examples/common/entry/entry_asmjs.cpp
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
||||
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include "entry_p.h"
|
||||
|
||||
#if BX_PLATFORM_EMSCRIPTEN
|
||||
|
||||
#include <emscripten.h>
|
||||
|
||||
namespace entry
|
||||
{
|
||||
const Event* poll()
|
||||
{
|
||||
}
|
||||
|
||||
void release(const Event* /*_event*/)
|
||||
{
|
||||
}
|
||||
|
||||
void setWindowSize(uint32_t /*_width*/, uint32_t /*_height*/)
|
||||
{
|
||||
}
|
||||
|
||||
void toggleWindowFrame()
|
||||
{
|
||||
}
|
||||
|
||||
void setMouseLock(bool /*_lock*/)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
int main(int _argc, char** _argv)
|
||||
{
|
||||
return entry::main(_argc, _argv);
|
||||
}
|
||||
|
||||
#endif // BX_PLATFORM_EMSCRIPTEN
|
|
@ -2685,6 +2685,7 @@ namespace bgfx
|
|||
|
||||
bx::Semaphore m_renderSem;
|
||||
bx::Semaphore m_gameSem;
|
||||
bx::Thread m_thread;
|
||||
#else
|
||||
void gameSemPost()
|
||||
{
|
||||
|
@ -2703,7 +2704,6 @@ namespace bgfx
|
|||
}
|
||||
#endif // BGFX_CONFIG_MULTITHREADED
|
||||
|
||||
bx::Thread m_thread;
|
||||
Frame m_frame[2];
|
||||
Frame* m_render;
|
||||
Frame* m_submit;
|
||||
|
|
Loading…
Reference in a new issue