From 96cdcec58ac9ed6d6d9c7de26a1fc88a4f948d18 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 16 Feb 2016 21:40:01 +0100 Subject: [PATCH] Fix declaration of dispatchable Vulkan handles --- src/internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal.h b/src/internal.h index a1664bae..2fe2aee4 100644 --- a/src/internal.h +++ b/src/internal.h @@ -98,8 +98,8 @@ typedef const GLubyte* (APIENTRY * PFNGLGETSTRINGIPROC)(GLenum,GLuint); #define VK_NULL_HANDLE 0 -typedef GLFWuint64 VkInstance; -typedef GLFWuint64 VkPhysicalDevice; +typedef void* VkInstance; +typedef void* VkPhysicalDevice; typedef GLFWuint64 VkSurfaceKHR; typedef unsigned int VkFlags; typedef unsigned int VkBool32;