40 lines
862 B
C++
40 lines
862 B
C++
#pragma once
|
|
|
|
#include "vk.hpp"
|
|
|
|
#include <cruft/util/library.hpp>
|
|
|
|
#include <string>
|
|
#include <experimental/filesystem>
|
|
|
|
|
|
namespace cruft::vk::icd {
|
|
struct icd_t {
|
|
std::string file_format_version;
|
|
struct {
|
|
std::experimental::filesystem::path library_path;
|
|
std::string api_version;
|
|
} icd;
|
|
};
|
|
|
|
|
|
std::vector<icd_t>
|
|
enumerate (void);
|
|
|
|
|
|
class vendor {
|
|
public:
|
|
vendor (icd_t const&);
|
|
vendor (::cruft::library &&);
|
|
|
|
struct vtable_t {
|
|
VkResult (*CreateInstance) (const VkInstanceCreateInfo*, const VkAllocationCallbacks*, VkInstance*) noexcept;
|
|
} vtable;
|
|
|
|
private:
|
|
using get_proc_t = void* (*)(VkInstance, char const*);
|
|
|
|
::cruft::library m_library;
|
|
get_proc_t const m_get_proc;
|
|
};
|
|
} |