2016-02-26 13:39:01 +11:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* Copyright:
|
2017-09-01 12:33:08 +10:00
|
|
|
* 2016-2017, Danny Robson <danny@nerdcruft.net>
|
2016-02-26 13:39:01 +11:00
|
|
|
*/
|
|
|
|
|
2017-05-26 16:30:48 +10:00
|
|
|
#ifndef CRUFT_VK_TRAITS_HPP
|
|
|
|
#define CRUFT_VK_TRAITS_HPP
|
2016-02-24 11:11:41 +11:00
|
|
|
|
|
|
|
#include "./fwd.hpp"
|
|
|
|
#include "./vk.hpp"
|
|
|
|
|
2017-09-08 17:13:57 +10:00
|
|
|
#include <cruft/util/tuple.hpp>
|
|
|
|
|
2017-09-01 12:33:08 +10:00
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
|
2017-05-26 16:30:48 +10:00
|
|
|
namespace cruft::vk {
|
2017-09-08 17:22:56 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-01 12:33:08 +10:00
|
|
|
/// describes the corresponding value for sType in native structures
|
2017-09-08 17:22:56 +10:00
|
|
|
template <typename>
|
2017-09-01 12:33:08 +10:00
|
|
|
struct structure_type {};
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2017-09-05 17:20:17 +10:00
|
|
|
#define DEFINE_STRUCTURE_TYPE(KLASS,VALUE) \
|
|
|
|
template <> \
|
|
|
|
struct structure_type<KLASS> : \
|
|
|
|
public std::integral_constant< \
|
|
|
|
VkStructureType, \
|
|
|
|
PASTE(VK_STRUCTURE_TYPE_,VALUE) \
|
|
|
|
> \
|
2017-09-01 12:33:08 +10:00
|
|
|
{ }
|
|
|
|
|
2017-09-05 17:20:17 +10:00
|
|
|
DEFINE_STRUCTURE_TYPE (VkInstanceCreateInfo, INSTANCE_CREATE_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkApplicationInfo, APPLICATION_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkDeviceQueueCreateInfo, DEVICE_QUEUE_CREATE_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkDeviceCreateInfo, DEVICE_CREATE_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkSwapchainCreateInfoKHR, SWAPCHAIN_CREATE_INFO_KHR);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkImageViewCreateInfo, IMAGE_VIEW_CREATE_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkShaderModuleCreateInfo, SHADER_MODULE_CREATE_INFO);
|
|
|
|
DEFINE_STRUCTURE_TYPE (VkPipelineShaderStageCreateInfo, PIPELINE_SHADER_STAGE_CREATE_INFO);
|
2017-09-07 15:50:49 +10:00
|
|
|
DEFINE_STRUCTURE_TYPE (VkDebugReportCallbackCreateInfoEXT,
|
|
|
|
DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT);
|
2017-09-01 12:33:08 +10:00
|
|
|
|
|
|
|
#undef DEFINE_STRUCTURE_TYPE
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
constexpr auto structure_type_v = structure_type<T>::value;
|
|
|
|
|
|
|
|
|
2017-09-05 17:20:17 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-08 17:22:56 +10:00
|
|
|
/// describes the parameter struct used to create a given vulkan type.
|
|
|
|
///
|
|
|
|
/// explicitly does not operate on vk-cruft types, only native types.
|
|
|
|
template <typename>
|
2017-09-05 17:20:17 +10:00
|
|
|
struct create_info { };
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
#define DEFINE_CREATE_INFO(TARGET,INFO) \
|
|
|
|
template <> \
|
|
|
|
struct create_info<TARGET> \
|
|
|
|
{ using type = INFO; }
|
|
|
|
|
|
|
|
DEFINE_CREATE_INFO (VkImageViewCreateInfo, VkImageViewCreateInfo);
|
|
|
|
DEFINE_CREATE_INFO (VkShaderModule, VkShaderModuleCreateInfo);
|
|
|
|
|
|
|
|
#undef DEFINE_CREATE_INFO
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
|
|
|
using create_info_t = typename create_info<T>::type;
|
|
|
|
|
|
|
|
|
2016-02-24 11:11:41 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-08 17:22:56 +10:00
|
|
|
/// describes the native type that corresponds to a given vk-cruft type.
|
2017-09-08 17:35:24 +10:00
|
|
|
template <typename> struct native_traits { };
|
2016-02-24 11:11:41 +11:00
|
|
|
|
2017-09-08 17:13:57 +10:00
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
2017-09-08 17:35:24 +10:00
|
|
|
template <> struct native_traits<instance> { using type = VkInstance; };
|
|
|
|
template <> struct native_traits<physical_device> { using type = VkPhysicalDevice; };
|
|
|
|
template <> struct native_traits<device> { using type = VkDevice; };
|
|
|
|
template <> struct native_traits<queue> { using type = VkQueue; };
|
|
|
|
template <> struct native_traits<command_pool> { using type = VkCommandPool; };
|
|
|
|
template <> struct native_traits<command_buffer> { using type = VkCommandBuffer; };
|
|
|
|
template <> struct native_traits<fence> { using type = VkFence; };
|
|
|
|
template <> struct native_traits<semaphore> { using type = VkSemaphore; };
|
|
|
|
template <> struct native_traits<event> { using type = VkEvent; };
|
|
|
|
template <> struct native_traits<render_pass> { using type = VkRenderPass; };
|
|
|
|
template <> struct native_traits<framebuffer> { using type = VkFramebuffer; };
|
|
|
|
template <> struct native_traits<shader_module> { using type = VkShaderModule; };
|
|
|
|
template <> struct native_traits<pipeline> { using type = VkPipeline; };
|
|
|
|
template <> struct native_traits<pipeline_cache> { using type = VkPipelineCache; };
|
|
|
|
template <> struct native_traits<device_memory> { using type = VkDeviceMemory; };
|
|
|
|
template <> struct native_traits<buffer> { using type = VkBuffer; };
|
|
|
|
template <> struct native_traits<buffer_view> { using type = VkBufferView; };
|
|
|
|
template <> struct native_traits<surface> { using type = VkSurfaceKHR; };
|
2017-09-08 17:13:57 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
2017-09-08 17:35:24 +10:00
|
|
|
using native_t = typename native_traits<T>::type;
|
2017-09-08 17:13:57 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-08 17:22:56 +10:00
|
|
|
/// describes the native type that owns a given native type, and hence
|
|
|
|
/// forms part of the create/destroy process.
|
|
|
|
///
|
|
|
|
/// undefined for types that aren't `owned' types.
|
2017-09-08 17:13:57 +10:00
|
|
|
template <typename> struct owner_traits {};
|
|
|
|
|
|
|
|
template <> struct owner_traits<queue> { using type = device; };
|
|
|
|
template <> struct owner_traits<surface> { using type = instance; };
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
using owner_t = typename owner_traits<T>::type;
|
2016-02-24 11:11:41 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-08 17:22:56 +10:00
|
|
|
/// lists the `create' and `destroy' methods for a given native type.
|
|
|
|
///
|
|
|
|
/// XXX: if such a function does not exist anywhere then we currently use
|
|
|
|
/// tuple::ignore to simplify implementation elsewhere. we should probably
|
|
|
|
/// investigate std::is_detected for these cases though.
|
2017-09-08 17:34:56 +10:00
|
|
|
///
|
|
|
|
/// clang#18781: we make use of references types extensively here to
|
|
|
|
/// workaround a potential ODR bug in clang which results in undefined
|
|
|
|
/// references.
|
|
|
|
/// or potentially i'm being too clever for my own good, but it works fine
|
|
|
|
/// in gcc...
|
2017-09-08 17:22:56 +10:00
|
|
|
template <typename>
|
|
|
|
struct life_traits { };
|
|
|
|
|
2016-02-24 11:11:41 +11:00
|
|
|
|
2017-09-08 17:22:56 +10:00
|
|
|
//-------------------------------------------------------------------------
|
2016-02-24 11:11:41 +11:00
|
|
|
template <> struct life_traits<instance> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateInstance;
|
|
|
|
static constexpr auto& destroy = vkDestroyInstance;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<device> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateDevice;
|
|
|
|
static constexpr auto& destroy = vkDestroyDevice;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<command_pool> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateCommandPool;
|
|
|
|
static constexpr auto& destroy = vkDestroyCommandPool;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<fence> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateFence;
|
|
|
|
static constexpr auto& destroy = vkDestroyFence;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<semaphore> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateSemaphore;
|
|
|
|
static constexpr auto& destroy = vkDestroySemaphore;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<event> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateEvent;
|
|
|
|
static constexpr auto& destroy = vkDestroyEvent;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<render_pass> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateRenderPass;
|
|
|
|
static constexpr auto& destroy = vkDestroyRenderPass;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<framebuffer> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateFramebuffer;
|
|
|
|
static constexpr auto& destroy = vkDestroyFramebuffer;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<shader_module> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateShaderModule;
|
|
|
|
static constexpr auto& destroy = vkDestroyShaderModule;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
2017-09-07 15:51:11 +10:00
|
|
|
template <> struct life_traits<surface> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& destroy = vkDestroySurfaceKHR;
|
2017-09-07 15:51:11 +10:00
|
|
|
};
|
|
|
|
|
2017-09-05 17:20:17 +10:00
|
|
|
template <>
|
|
|
|
struct life_traits<queue> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkGetDeviceQueue;
|
2017-09-08 17:13:57 +10:00
|
|
|
|
|
|
|
static constexpr auto destroy = ::util::tuple::ignore<
|
2017-09-08 17:35:24 +10:00
|
|
|
native_t<owner_t<queue>>,
|
|
|
|
native_t<queue>,
|
2017-09-08 17:13:57 +10:00
|
|
|
const VkAllocationCallbacks*
|
|
|
|
>;
|
2017-09-05 17:20:17 +10:00
|
|
|
};
|
|
|
|
|
2016-02-24 11:11:41 +11:00
|
|
|
template <VkPipelineBindPoint> struct create_traits { };
|
|
|
|
template <> struct create_traits<VK_PIPELINE_BIND_POINT_COMPUTE> {
|
|
|
|
static constexpr auto func = vkCreateComputePipelines;
|
|
|
|
};
|
|
|
|
template <> struct create_traits<VK_PIPELINE_BIND_POINT_GRAPHICS> {
|
|
|
|
static constexpr auto func = vkCreateGraphicsPipelines;
|
|
|
|
};
|
|
|
|
|
2016-05-18 10:19:01 +10:00
|
|
|
// XXX: Currently causes a segfault under gcc-5.3.0 when stabs debgging is
|
|
|
|
// enabled. See gcc#71058
|
|
|
|
//
|
|
|
|
//template <> struct life_traits<pipeline> {
|
|
|
|
// template <VkPipelineBindPoint P>
|
|
|
|
// static constexpr auto create = create_traits<P>::func;
|
|
|
|
// static constexpr auto destroy = vkDestroyPipeline;
|
|
|
|
//};
|
2016-02-24 11:11:41 +11:00
|
|
|
|
|
|
|
template <> struct life_traits<pipeline_cache> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreatePipelineCache;
|
|
|
|
static constexpr auto& destroy = vkDestroyPipelineCache;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<device_memory> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkAllocateMemory;
|
|
|
|
static constexpr auto& destroy = vkFreeMemory;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<buffer> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateBuffer;
|
|
|
|
static constexpr auto& destroy = vkDestroyBuffer;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
template <> struct life_traits<buffer_view> {
|
2017-09-08 17:34:56 +10:00
|
|
|
static constexpr auto& create = vkCreateBufferView;
|
2017-05-26 16:32:31 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-09-08 17:22:56 +10:00
|
|
|
/// describes the functions required to enumerate native types
|
|
|
|
template <typename> struct enum_traits { };
|
2016-02-24 11:11:41 +11:00
|
|
|
|
2017-05-26 16:32:31 +10:00
|
|
|
template <> struct enum_traits<physical_device> {
|
|
|
|
static constexpr auto enumerate = vkEnumeratePhysicalDevices;
|
2016-02-24 11:11:41 +11:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|