#pragma once #include "wsi.hpp" #include class SDL_WSIPlatform : public Vulkan::WSIPlatform { public: VkSurfaceKHR create_surface(VkInstance instance, VkPhysicalDevice gpu) override; void destroy_surface(VkInstance instance, VkSurfaceKHR surface) override; std::vector get_instance_extensions() override; uint32_t get_surface_width() override; uint32_t get_surface_height() override; bool alive(Vulkan::WSI &wsi) override; void poll_input() override; void poll_input_async(Granite::InputTrackerHandler *handler) override; void set_window(SDL_Window *_window); void do_resize(); private: SDL_Window *window; };