forked from haasn/libplacebo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vulkan.c
261 lines (218 loc) · 7.94 KB
/
vulkan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#include <vulkan/vulkan.h>
#include "gpu_tests.h"
#include "vulkan/command.h"
#include "vulkan/gpu.h"
#include <libplacebo/renderer.h>
#include <libplacebo/vulkan.h>
static void vulkan_interop_tests(pl_vulkan pl_vk,
enum pl_handle_type handle_type)
{
pl_gpu gpu = pl_vk->gpu;
printf("testing vulkan interop for handle type 0x%x\n", handle_type);
if (gpu->export_caps.buf & handle_type) {
pl_buf buf = pl_buf_create(gpu, pl_buf_params(
.size = 1024,
.export_handle = handle_type,
));
REQUIRE(buf);
REQUIRE_HANDLE(buf->shared_mem, handle_type);
REQUIRE_CMP(buf->shared_mem.size, >=, buf->params.size, "zu");
REQUIRE(pl_buf_export(gpu, buf));
pl_buf_destroy(gpu, &buf);
}
pl_fmt fmt = pl_find_fmt(gpu, PL_FMT_UNORM, 1, 0, 0, PL_FMT_CAP_BLITTABLE);
if (!fmt)
return;
// Test interop API
if (gpu->export_caps.tex & handle_type) {
VkSemaphore sem = pl_vulkan_sem_create(gpu, pl_vulkan_sem_params(
.type = VK_SEMAPHORE_TYPE_TIMELINE,
.initial_value = 0,
));
pl_tex tex = pl_tex_create(gpu, pl_tex_params(
.w = 32,
.h = 32,
.format = fmt,
.blit_dst = true,
.export_handle = handle_type,
));
REQUIRE(sem);
REQUIRE(tex);
REQUIRE(pl_vulkan_hold_ex(gpu, pl_vulkan_hold_params(
.tex = tex,
.layout = VK_IMAGE_LAYOUT_GENERAL,
.qf = VK_QUEUE_FAMILY_EXTERNAL,
.semaphore = { sem, 1 },
)));
pl_vulkan_release_ex(gpu, pl_vulkan_release_params(
.tex = tex,
.layout = VK_IMAGE_LAYOUT_GENERAL,
.qf = VK_QUEUE_FAMILY_EXTERNAL,
.semaphore = { sem, 1 },
));
pl_tex_clear(gpu, tex, (float[4]){0});
pl_gpu_finish(gpu);
REQUIRE(!pl_tex_poll(gpu, tex, 0));
pl_vulkan_sem_destroy(gpu, &sem);
pl_tex_destroy(gpu, &tex);
}
}
static void vulkan_swapchain_tests(pl_vulkan vk, VkSurfaceKHR surf)
{
if (!surf)
return;
printf("testing vulkan swapchain\n");
pl_gpu gpu = vk->gpu;
pl_swapchain sw;
sw = pl_vulkan_create_swapchain(vk, pl_vulkan_swapchain_params(
.surface = surf,
));
REQUIRE(sw);
// Attempt actually initializing the swapchain
int w = 640, h = 480;
REQUIRE(pl_swapchain_resize(sw, &w, &h));
for (int i = 0; i < 10; i++) {
struct pl_swapchain_frame frame;
REQUIRE(pl_swapchain_start_frame(sw, &frame));
if (frame.fbo->params.blit_dst)
pl_tex_clear(gpu, frame.fbo, (float[4]){0});
// TODO: test this with an actual pl_renderer instance
struct pl_frame target;
pl_frame_from_swapchain(&target, &frame);
REQUIRE(pl_swapchain_submit_frame(sw));
pl_swapchain_swap_buffers(sw);
// Try resizing the swapchain in the middle of rendering
if (i == 5) {
w = 320;
h = 240;
REQUIRE(pl_swapchain_resize(sw, &w, &h));
}
}
pl_swapchain_destroy(&sw);
}
int main()
{
pl_log log = pl_test_logger();
pl_vk_inst inst = pl_vk_inst_create(log, pl_vk_inst_params(
.debug = true,
.debug_extra = true,
.get_proc_addr = vkGetInstanceProcAddr,
.opt_extensions = (const char *[]){
VK_KHR_SURFACE_EXTENSION_NAME,
VK_EXT_HEADLESS_SURFACE_EXTENSION_NAME,
},
.num_opt_extensions = 2,
));
if (!inst)
return SKIP;
PL_VK_LOAD_FUN(inst->instance, EnumeratePhysicalDevices, inst->get_proc_addr);
PL_VK_LOAD_FUN(inst->instance, GetPhysicalDeviceProperties, inst->get_proc_addr);
uint32_t num = 0;
EnumeratePhysicalDevices(inst->instance, &num, NULL);
if (!num)
return SKIP;
VkPhysicalDevice *devices = calloc(num, sizeof(*devices));
if (!devices)
return 1;
EnumeratePhysicalDevices(inst->instance, &num, devices);
VkSurfaceKHR surf = VK_NULL_HANDLE;
PL_VK_LOAD_FUN(inst->instance, CreateHeadlessSurfaceEXT, inst->get_proc_addr);
if (CreateHeadlessSurfaceEXT) {
VkHeadlessSurfaceCreateInfoEXT info = {
.sType = VK_STRUCTURE_TYPE_HEADLESS_SURFACE_CREATE_INFO_EXT,
};
VkResult res = CreateHeadlessSurfaceEXT(inst->instance, &info, NULL, &surf);
REQUIRE_CMP(res, ==, VK_SUCCESS, "u");
}
// Make sure choosing any device works
VkPhysicalDevice dev;
dev = pl_vulkan_choose_device(log, pl_vulkan_device_params(
.instance = inst->instance,
.get_proc_addr = inst->get_proc_addr,
.allow_software = true,
.surface = surf,
));
if (!dev)
return SKIP;
// Test all attached devices
for (int i = 0; i < num; i++) {
VkPhysicalDeviceProperties props = {0};
GetPhysicalDeviceProperties(devices[i], &props);
#ifndef CI_ALLOW_SW
if (props.deviceType == VK_PHYSICAL_DEVICE_TYPE_CPU) {
printf("Skipping device %d: %s\n", i, props.deviceName);
continue;
}
#endif
printf("Testing device %d: %s\n", i, props.deviceName);
// Make sure we can choose this device by name
dev = pl_vulkan_choose_device(log, pl_vulkan_device_params(
.instance = inst->instance,
.get_proc_addr = inst->get_proc_addr,
.device_name = props.deviceName,
));
REQUIRE_CMP(dev, ==, devices[i], "p");
struct pl_vulkan_params params = *pl_vulkan_params(
.instance = inst->instance,
.get_proc_addr = inst->get_proc_addr,
.device = devices[i],
.queue_count = 8, // test inter-queue stuff
.surface = surf,
);
pl_vulkan vk = pl_vulkan_create(log, ¶ms);
if (!vk)
continue;
gpu_shader_tests(vk->gpu);
vulkan_swapchain_tests(vk, surf);
// Print heap statistics
pl_vk_print_heap(vk->gpu, PL_LOG_DEBUG);
// Test importing this context via the vulkan interop API
pl_vulkan vk2 = pl_vulkan_import(log, pl_vulkan_import_params(
.instance = vk->instance,
.get_proc_addr = inst->get_proc_addr,
.phys_device = vk->phys_device,
.device = vk->device,
.extensions = vk->extensions,
.num_extensions = vk->num_extensions,
.features = vk->features,
.queue_graphics = vk->queue_graphics,
.queue_compute = vk->queue_compute,
.queue_transfer = vk->queue_transfer,
));
REQUIRE(vk2);
pl_vulkan_destroy(&vk2);
// Run these tests last because they disable some validation layers
#ifdef PL_HAVE_UNIX
vulkan_interop_tests(vk, PL_HANDLE_FD);
vulkan_interop_tests(vk, PL_HANDLE_DMA_BUF);
#endif
#ifdef PL_HAVE_WIN32
vulkan_interop_tests(vk, PL_HANDLE_WIN32);
vulkan_interop_tests(vk, PL_HANDLE_WIN32_KMT);
#endif
gpu_interop_tests(vk->gpu);
pl_vulkan_destroy(&vk);
// Re-run the same export/import tests with async queues disabled
params.async_compute = false;
params.async_transfer = false;
vk = pl_vulkan_create(log, ¶ms);
REQUIRE(vk); // it succeeded the first time
#ifdef PL_HAVE_UNIX
vulkan_interop_tests(vk, PL_HANDLE_FD);
vulkan_interop_tests(vk, PL_HANDLE_DMA_BUF);
#endif
#ifdef PL_HAVE_WIN32
vulkan_interop_tests(vk, PL_HANDLE_WIN32);
vulkan_interop_tests(vk, PL_HANDLE_WIN32_KMT);
#endif
gpu_interop_tests(vk->gpu);
pl_vulkan_destroy(&vk);
// Reduce log spam after first tested device
pl_log_level_update(log, PL_LOG_INFO);
}
if (surf)
vkDestroySurfaceKHR(inst->instance, surf, NULL);
pl_vk_inst_destroy(&inst);
pl_log_destroy(&log);
free(devices);
}