You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
336 B
22 lines
336 B
#pragma once
|
|
|
|
#include <vulkan/vulkan.h>
|
|
#include <vulkan/vulkan_core.h>
|
|
|
|
namespace ls {
|
|
class VulkanState;
|
|
}
|
|
|
|
#include "window.hpp"
|
|
|
|
namespace ls {
|
|
class VulkanState {
|
|
private:
|
|
VkInstance __instance;
|
|
public:
|
|
VulkanState(GlfwState* state);
|
|
|
|
void __make_surface(GlfwWindow* win, VkSurfaceKHR* surf);
|
|
};
|
|
}
|