|
@@ -379,6 +379,7 @@ void RenderingServerDefault::sync() {
|
|
|
}
|
|
|
|
|
|
void RenderingServerDefault::draw(bool p_swap_buffers, double frame_step) {
|
|
|
+ ERR_FAIL_COND_MSG(!Thread::is_main_thread(), "Manually triggering the draw function from the RenderingServer can only be done on the main thread. Call this function from the main thread or use call_deferred().");
|
|
|
if (create_thread) {
|
|
|
command_queue.push(this, &RenderingServerDefault::_thread_draw, p_swap_buffers, frame_step);
|
|
|
} else {
|