Merge branch 'main' into 26-03-28-movie-player

This commit is contained in:
Pieter-Jan Briers
2026-04-01 15:15:08 +02:00
committed by GitHub
115 changed files with 3358 additions and 1240 deletions
+4
View File
@@ -23,6 +23,8 @@
#if _WIN32
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
#elif __APPLE__
#include <pthread.h>
#endif
// ============================================================================
@@ -682,6 +684,8 @@ void OSSetCurrentThreadName(const char* name) {
if (!SUCCEEDED(result)) {
CRASH("OSSetThreadName: SetThreadDescription failed");
}
#elif __APPLE__
pthread_setname_np(name);
#endif
}