2016-10-07 04:26:39 -07:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Józef Kucia for CodeWeavers
|
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2016-10-07 04:26:39 -07:00
|
|
|
*
|
2017-06-16 12:05:54 -07:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2016-10-07 04:26:39 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VKD3D_H
|
|
|
|
#define __VKD3D_H
|
|
|
|
|
2017-12-15 06:16:20 -08:00
|
|
|
#ifndef VKD3D_NO_WIN32_TYPES
|
|
|
|
# include "vkd3d_windows.h"
|
2017-12-15 06:16:21 -08:00
|
|
|
# include "vkd3d_d3d12.h"
|
2017-12-15 06:16:20 -08:00
|
|
|
#endif /* VKD3D_NO_WIN32_TYPES */
|
|
|
|
|
2018-01-16 05:02:23 -08:00
|
|
|
#ifndef VKD3D_NO_VULKAN_H
|
|
|
|
# include <vulkan/vulkan.h>
|
|
|
|
#endif /* VKD3D_NO_VULKAN_H */
|
|
|
|
|
2016-10-17 09:11:12 -07:00
|
|
|
#include <stdbool.h>
|
2016-10-07 04:26:39 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2016-10-17 09:11:12 -07:00
|
|
|
typedef bool (*vkd3d_signal_event_pfn)(HANDLE event);
|
2016-10-07 04:26:39 -07:00
|
|
|
|
2018-01-11 08:03:46 -08:00
|
|
|
typedef void * (*vkd3d_thread_pfn)(void *data);
|
|
|
|
|
|
|
|
typedef void * (*vkd3d_create_thread_pfn)(vkd3d_thread_pfn thread_main, void *data);
|
|
|
|
typedef bool (*vkd3d_join_thread_pfn)(void *thread);
|
|
|
|
|
2018-01-11 08:03:47 -08:00
|
|
|
struct vkd3d_instance;
|
|
|
|
|
2018-01-17 03:48:13 -08:00
|
|
|
struct vkd3d_vulkan_procs_info
|
|
|
|
{
|
|
|
|
PFN_vkCreateInstance vkCreateInstance;
|
|
|
|
PFN_vkDestroyInstance vkDestroyInstance;
|
|
|
|
PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr;
|
|
|
|
PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties;
|
|
|
|
};
|
|
|
|
|
2018-01-11 08:03:47 -08:00
|
|
|
struct vkd3d_instance_create_info
|
2016-10-07 04:26:39 -07:00
|
|
|
{
|
2016-10-07 04:26:39 -07:00
|
|
|
vkd3d_signal_event_pfn signal_event_pfn;
|
2018-01-11 08:03:46 -08:00
|
|
|
vkd3d_create_thread_pfn create_thread_pfn;
|
|
|
|
vkd3d_join_thread_pfn join_thread_pfn;
|
2017-08-02 01:45:06 -07:00
|
|
|
size_t wchar_size;
|
2018-01-17 03:48:13 -08:00
|
|
|
const struct vkd3d_vulkan_procs_info *vulkan_procs_info;
|
2016-10-07 04:26:39 -07:00
|
|
|
};
|
|
|
|
|
2018-01-11 08:03:47 -08:00
|
|
|
struct vkd3d_device_create_info
|
|
|
|
{
|
|
|
|
D3D_FEATURE_LEVEL minimum_feature_level;
|
|
|
|
|
|
|
|
struct vkd3d_instance *instance;
|
|
|
|
const struct vkd3d_instance_create_info *instance_create_info;
|
2018-01-16 05:02:27 -08:00
|
|
|
|
|
|
|
VkPhysicalDevice vk_physical_device;
|
2018-01-11 08:03:47 -08:00
|
|
|
};
|
|
|
|
|
2016-10-25 04:23:18 -07:00
|
|
|
/* resource flags */
|
|
|
|
#define VKD3D_RESOURCE_INITIAL_STATE_TRANSITION 0x00000001
|
|
|
|
#define VKD3D_RESOURCE_SWAPCHAIN_IMAGE 0x00000002
|
|
|
|
|
2018-01-11 08:03:47 -08:00
|
|
|
HRESULT vkd3d_create_instance(const struct vkd3d_instance_create_info *create_info,
|
|
|
|
struct vkd3d_instance **instance);
|
2018-01-17 03:48:09 -08:00
|
|
|
VkInstance vkd3d_get_vk_instance(struct vkd3d_instance *instance);
|
2018-01-11 08:03:47 -08:00
|
|
|
ULONG vkd3d_instance_decref(struct vkd3d_instance *instance);
|
|
|
|
ULONG vkd3d_instance_incref(struct vkd3d_instance *instance);
|
|
|
|
|
2016-10-17 08:56:08 -07:00
|
|
|
HRESULT vkd3d_create_device(const struct vkd3d_device_create_info *create_info,
|
2016-10-07 04:26:39 -07:00
|
|
|
REFIID riid, void **device);
|
2016-10-17 09:38:39 -07:00
|
|
|
HRESULT vkd3d_create_image_resource(ID3D12Device *device, const D3D12_RESOURCE_DESC *desc,
|
2016-10-25 04:23:18 -07:00
|
|
|
VkImage vk_image, unsigned int resource_flags, ID3D12Resource **resource);
|
2016-10-17 09:49:44 -07:00
|
|
|
VkDevice vkd3d_get_vk_device(ID3D12Device *device);
|
2016-10-22 12:07:46 -07:00
|
|
|
VkPhysicalDevice vkd3d_get_vk_physical_device(ID3D12Device *device);
|
2018-01-17 03:48:09 -08:00
|
|
|
struct vkd3d_instance *vkd3d_instance_from_device(ID3D12Device *device);
|
2018-01-11 08:03:47 -08:00
|
|
|
|
2016-10-22 11:42:46 -07:00
|
|
|
uint32_t vkd3d_get_vk_queue_family_index(ID3D12CommandQueue *queue);
|
2018-01-15 04:49:07 -08:00
|
|
|
VkQueue vkd3d_acquire_vk_queue(ID3D12CommandQueue *queue);
|
|
|
|
void vkd3d_release_vk_queue(ID3D12CommandQueue *queue);
|
2016-10-07 04:26:39 -07:00
|
|
|
|
2017-12-12 04:12:47 -08:00
|
|
|
HRESULT vkd3d_serialize_root_signature(const D3D12_ROOT_SIGNATURE_DESC *root_signature_desc,
|
|
|
|
D3D_ROOT_SIGNATURE_VERSION version, ID3DBlob **blob, ID3DBlob **error_blob);
|
|
|
|
|
|
|
|
HRESULT vkd3d_create_root_signature_deserializer(const void *data, SIZE_T data_size,
|
|
|
|
REFIID iid, void **deserializer);
|
|
|
|
|
2018-01-11 08:03:47 -08:00
|
|
|
VkFormat vkd3d_get_vk_format(DXGI_FORMAT format);
|
|
|
|
|
2016-10-07 04:26:39 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* __VKD3D_H */
|