libcruft-vk/icd/vendor.hpp

45 lines
1009 B
C++
Raw Normal View History

2018-08-24 17:33:09 +10:00
#pragma once
#include "vk.hpp"
#include <cruft/util/library.hpp>
#include <string>
#include <experimental/filesystem>
2018-09-08 12:31:43 +10:00
///////////////////////////////////////////////////////////////////////////////
2018-08-24 17:33:09 +10:00
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 {
2018-09-08 12:31:43 +10:00
VkResult (*CreateInstance) (
VkInstanceCreateInfo const*,
VkAllocationCallbacks const*,
VkInstance*
) noexcept;
2018-08-24 17:33:09 +10:00
} vtable;
private:
using get_proc_t = void* (*)(VkInstance, char const*);
::cruft::library m_library;
get_proc_t const m_get_proc;
};
}