vkd3d  1.3
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
29 extern "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 #ifdef LIBVKD3D_UTILS_SOURCE
38 # define VKD3D_UTILS_API VKD3D_EXPORT
39 #else
40 # define VKD3D_UTILS_API VKD3D_IMPORT
41 #endif
42 
43 /* 1.0 */
44 VKD3D_UTILS_API HANDLE vkd3d_create_event(void);
45 VKD3D_UTILS_API HRESULT vkd3d_signal_event(HANDLE event);
46 VKD3D_UTILS_API unsigned int vkd3d_wait_event(HANDLE event, unsigned int milliseconds);
47 VKD3D_UTILS_API void vkd3d_destroy_event(HANDLE event);
48 
49 #define D3D12CreateDevice(a, b, c, d) D3D12CreateDeviceVKD3D(a, b, c, d, VKD3D_UTILS_API_VERSION)
50 VKD3D_UTILS_API HRESULT WINAPI D3D12CreateRootSignatureDeserializer(
51  const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
52 VKD3D_UTILS_API HRESULT WINAPI D3D12GetDebugInterface(REFIID iid, void **debug);
53 VKD3D_UTILS_API HRESULT WINAPI D3D12SerializeRootSignature(const D3D12_ROOT_SIGNATURE_DESC *desc,
54  D3D_ROOT_SIGNATURE_VERSION version, ID3DBlob **blob, ID3DBlob **error_blob);
55 
56 /* 1.2 */
57 VKD3D_UTILS_API HRESULT WINAPI D3D12CreateDeviceVKD3D(IUnknown *adapter, D3D_FEATURE_LEVEL feature_level,
58  REFIID iid, void **device, enum vkd3d_api_version api_version);
59 VKD3D_UTILS_API HRESULT WINAPI D3D12CreateVersionedRootSignatureDeserializer(const void *data,
60  SIZE_T data_size, REFIID iid, void **deserializer);
61 VKD3D_UTILS_API HRESULT WINAPI D3D12SerializeVersionedRootSignature(const D3D12_VERSIONED_ROOT_SIGNATURE_DESC *desc,
62  ID3DBlob **blob, ID3DBlob **error_blob);
63 
64 /* 1.3 */
65 VKD3D_UTILS_API HRESULT WINAPI D3DCompile(const void *data, SIZE_T data_size, const char *filename,
66  const D3D_SHADER_MACRO *defines, ID3DInclude *include, const char *entrypoint,
67  const char *target, UINT flags, UINT effect_flags, ID3DBlob **shader, ID3DBlob **error_messages);
68 VKD3D_UTILS_API HRESULT WINAPI D3DCompile2(const void *data, SIZE_T data_size, const char *filename,
69  const D3D_SHADER_MACRO *defines, ID3DInclude *include, const char *entrypoint,
70  const char *target, UINT flags, UINT effect_flags, UINT secondary_flags,
71  const void *secondary_data, SIZE_T secondary_data_size, ID3DBlob **shader,
72  ID3DBlob **error_messages);
73 VKD3D_UTILS_API HRESULT WINAPI D3DCreateBlob(SIZE_T data_size, ID3DBlob **blob);
74 VKD3D_UTILS_API HRESULT WINAPI D3DPreprocess(const void *data, SIZE_T size, const char *filename,
75  const D3D_SHADER_MACRO *defines, ID3DInclude *include,
76  ID3DBlob **shader, ID3DBlob **error_messages);
77 
78 #ifdef __cplusplus
79 }
80 #endif /* __cplusplus */
81 
82 #endif /* __VKD3D_UTILS_H */
vkd3d_shader_code::size
size_t size
Size of code, in bytes.
Definition: vkd3d_shader.h:183