decouple windows events and render in a separate thread for better response

This commit is contained in:
2018-08-08 12:50:39 +02:00
parent 9cccecd381
commit 91add1b0b3
3 changed files with 88 additions and 22 deletions

View File

@@ -14,6 +14,7 @@ void android_async_lock(struct engine* engine);
void android_async_swap(struct engine* engine);
void android_async_unlock(struct engine* engine);
#elif _WIN32
bool async_lock_try();
void async_lock();
void async_swap();
void async_unlock();
@@ -119,7 +120,7 @@ void App::initLog()
rec_path = data_path + "\\frames";
#endif
LogRemote::I.start();
//LogRemote::I.start();
LogRemote::I.file_init();
}