vkd3d 1.2
The vkd3d 3D Graphics Library
vkd3d_utils.h
1/*
2 * Copyright 2016 Józef Kucia for CodeWeavers
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#ifndef __VKD3D_UTILS_H
20#define __VKD3D_UTILS_H
21
22#include <vkd3d.h>
23
24#ifndef VKD3D_UTILS_API_VERSION
25#define VKD3D_UTILS_API_VERSION VKD3D_API_VERSION_1_0
26#endif
27
28#ifdef __cplusplus
29extern "C" {
30#endif /* __cplusplus */
31
32#define VKD3D_WAIT_OBJECT_0 (0)
33#define VKD3D_WAIT_TIMEOUT (1)
34#define VKD3D_WAIT_FAILED (~0u)
35#define VKD3D_INFINITE (~0u)
36
37/* 1.0 */
38HANDLE vkd3d_create_event(void);
39HRESULT vkd3d_signal_event(HANDLE event);
40unsigned int vkd3d_wait_event(HANDLE event, unsigned int milliseconds);
41void vkd3d_destroy_event(HANDLE event);
42
43#define D3D12CreateDevice(a, b, c, d) D3D12CreateDeviceVKD3D(a, b, c, d, VKD3D_UTILS_API_VERSION)
44HRESULT WINAPI D3D12CreateRootSignatureDeserializer(const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
45HRESULT WINAPI D3D12GetDebugInterface(REFIID iid, void **debug);
46HRESULT WINAPI D3D12SerializeRootSignature(const D3D12_ROOT_SIGNATURE_DESC *desc,
47 D3D_ROOT_SIGNATURE_VERSION version, ID3DBlob **blob, ID3DBlob **error_blob);
48
49/* 1.2 */
50HRESULT WINAPI D3D12CreateDeviceVKD3D(IUnknown *adapter, D3D_FEATURE_LEVEL feature_level,
51 REFIID iid, void **device, enum vkd3d_api_version api_version);
52HRESULT WINAPI D3D12CreateVersionedRootSignatureDeserializer(const void *data,
53 SIZE_T data_size, REFIID iid, void **deserializer);
54HRESULT WINAPI D3D12SerializeVersionedRootSignature(const D3D12_VERSIONED_ROOT_SIGNATURE_DESC *desc,
55 ID3DBlob **blob, ID3DBlob **error_blob);
56
57#ifdef __cplusplus
58}
59#endif /* __cplusplus */
60
61#endif /* __VKD3D_UTILS_H */