Fix Windows compilation

This commit is contained in:
David Gonzalez Martin 2024-12-27 09:33:51 -06:00 committed by David
parent 1f5918748b
commit a376fba285
2 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,7 @@ typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef __uint128_t u128;
typedef unsigned int uint;
typedef int8_t s8;
typedef int16_t s16;

View File

@ -436,8 +436,9 @@ OSCursorPosition os_window_cursor_position_get(OSWindow window)
int window_create_surface(void* instance, OSWindow window, const void* allocator, void** surface)
{
#define FORCE_XLIB_INITIALIZATION 1
auto* surface_pointer = (VkSurfaceKHR*)surface;
#ifdef __linux__
#define FORCE_XLIB_INITIALIZATION 1
if (use_x11 && FORCE_XLIB_INITIALIZATION)
{
auto* x11_display = glfwGetX11Display();
@ -454,7 +455,10 @@ int window_create_surface(void* instance, OSWindow window, const void* allocator
}
else
{
#endif
return glfwCreateWindowSurface(instance, window, allocator, surface_pointer);
#ifdef __linux__
}
#endif
}