mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
22 lines
600 B
C++
22 lines
600 B
C++
|
|
/* platform_config.h */
|
|
|
|
|
|
#ifdef __linux__
|
|
#include <alloca.h>
|
|
#endif
|
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
|
#include <stdlib.h> // alloca
|
|
// FreeBSD and OpenBSD use pthread_set_name_np, while other platforms,
|
|
// include NetBSD, use pthread_setname_np. NetBSD's version however requires
|
|
// a different format, we handle this directly in thread_posix.
|
|
#ifdef __NetBSD__
|
|
#define PTHREAD_NETBSD_SET_NAME
|
|
#else
|
|
#define PTHREAD_BSD_SET_NAME
|
|
#endif
|
|
#endif
|
|
|
|
#define GLES2_INCLUDE_H "drivers/gl_context/glad/glad/glad.h"
|