diff --git a/docs/README-migration.md b/docs/README-migration.md index f85db015d3..226d879c36 100644 --- a/docs/README-migration.md +++ b/docs/README-migration.md @@ -1835,3 +1835,5 @@ SDL_Vulkan_GetVkGetInstanceProcAddr() now returns `SDL_FunctionPointer` instead SDL_Vulkan_CreateSurface() now takes a VkAllocationCallbacks pointer as its third parameter. If you don't have an allocator to supply, pass a NULL here to use the system default allocator (SDL2 always used the system default allocator here). SDL_Vulkan_GetDrawableSize() has been removed. SDL_GetWindowSizeInPixels() can be used in its place. + +SDL_vulkanInstance and SDL_vulkanSurface have been removed. They were for compatibility with Tizen, who had built their own Vulkan interface into SDL2, but these apps will need changes for the SDL3 API if they are upgraded anyhow. diff --git a/include/SDL3/SDL_vulkan.h b/include/SDL3/SDL_vulkan.h index aa08ec717d..bae2e694ad 100644 --- a/include/SDL3/SDL_vulkan.h +++ b/include/SDL3/SDL_vulkan.h @@ -56,9 +56,6 @@ struct VkAllocationCallbacks; #endif /* !NO_SDL_VULKAN_TYPEDEFS */ -typedef VkInstance SDL_vulkanInstance; -typedef VkSurfaceKHR SDL_vulkanSurface; /* for compatibility with Tizen */ - /** * \name Vulkan support functions */