[Windows] Offload RenderingDevice creation test to subprocess.

This commit is contained in:
Pāvels Nadtočajevs
2025-02-24 11:25:54 +02:00
parent 39c201ca58
commit ab717497ef
11 changed files with 276 additions and 3 deletions

View File

@ -41,6 +41,7 @@
#include <cxxabi.h>
#include <signal.h>
#include <algorithm>
#include <cstdlib>
#include <iterator>
#include <string>
#include <vector>
@ -133,6 +134,10 @@ extern void CrashHandlerException(int signal) {
return;
}
if (OS::get_singleton()->is_crash_handler_silent()) {
std::_Exit(0);
}
String msg;
const ProjectSettings *proj_settings = ProjectSettings::get_singleton();
if (proj_settings) {