-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathvulkan_hello_world.cpp
659 lines (555 loc) · 27.4 KB
/
vulkan_hello_world.cpp
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
#include <iostream>
#define GLFW_INCLUDE_VULKAN
#include <GLFW/glfw3.h>
#define GLM_FORCE_RADIANS
#define GLM_FORCE_DEPTH_ZERO_TO_ONE
#include <glm/vec4.hpp>
#include <glm/mat4x4.hpp>
/// system
#include <vector>
#include <array>
#include <cstring>
#include <fstream>
#include <iterator>
#include <thread>
/// MonkVG
#include <MonkVG/openvg.h>
#define MNKVG_VULKAN_BACKEND
#include <MonkVG/vgext.h>
#include <MonkVG/vgu.h>
/// vulkan
#include <vulkan/vulkan.h>
// STB image loader
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
struct vulkan_test_ctx_t {
GLFWwindow *glfw_window;
VkInstance instance;
VkPhysicalDevice physical_device = VK_NULL_HANDLE;
VkDevice logical_device = VK_NULL_HANDLE;
VkQueue graphics_queue = VK_NULL_HANDLE;
VkQueue present_queue = VK_NULL_HANDLE;
VkSurfaceKHR surface = VK_NULL_HANDLE;
VkSwapchainKHR swap_chain = VK_NULL_HANDLE;
std::vector<VkImage> swap_chain_images;
std::vector<VkImageView> image_views;
VkFormat swap_chain_format;
VkExtent2D swap_chain_extent;
VkShaderModule vert_shader_module = VK_NULL_HANDLE;
VkShaderModule frag_shader_module = VK_NULL_HANDLE;
VkRenderPass render_pass = VK_NULL_HANDLE;
VkPipelineLayout pipeline_layout = VK_NULL_HANDLE;
VkPipeline graphics_pipeline = VK_NULL_HANDLE;
std::vector<VkFramebuffer> swap_chain_framebuffers;
VkCommandPool command_pool = VK_NULL_HANDLE;
VkCommandBuffer command_buffer = VK_NULL_HANDLE;
VkSemaphore image_available_sema = VK_NULL_HANDLE;
VkSemaphore render_finished_sema = VK_NULL_HANDLE;
VkFence in_flight_fence = VK_NULL_HANDLE;
bool enable_vk_validation_layers = true;
std::array<const char *, 1> vk_validation_layers = {
"VK_LAYER_KHRONOS_validation"};
std::array<const char *, 1> vk_device_extensions = {
VK_KHR_SWAPCHAIN_EXTENSION_NAME};
};
void init_vulkan(vulkan_test_ctx_t &ctx) {
// check vulkan validation layer support. search for ours
uint32_t layer_cnt = 0;
vkEnumerateInstanceLayerProperties(&layer_cnt, nullptr);
std::vector<VkLayerProperties> available_layers(layer_cnt);
vkEnumerateInstanceLayerProperties(&layer_cnt, available_layers.data());
uint32_t found_layer_cnt = 0;
for (const char *layer_name : ctx.vk_validation_layers) {
for (const auto &layer_props : available_layers) {
std::cout << "available layer: " << layer_props.layerName
<< std::endl;
if (strcmp(layer_name, layer_props.layerName) == 0) {
std::cout << "\tfound required layer: " << layer_name
<< std::endl;
found_layer_cnt++;
}
}
}
VkApplicationInfo app_info = {.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
.pApplicationName = "Vulkan Test",
.applicationVersion =
VK_MAKE_VERSION(1, 0, 0),
.pEngineName = "No Engine",
.engineVersion = VK_MAKE_VERSION(1, 0, 0),
.apiVersion = VK_API_VERSION_1_2};
uint32_t glfw_extension_cnt = 0;
const char **glfw_extensions;
glfw_extensions = glfwGetRequiredInstanceExtensions(&glfw_extension_cnt);
// Get required GLFW extensions
uint32_t glfwExtensionCount = 0;
const char **glfwExtensions =
glfwGetRequiredInstanceExtensions(&glfwExtensionCount);
// Create a vector to hold all required extensions, including GLFW's and
// your custom ones
std::vector<const char *> extensions(glfw_extensions,
glfw_extensions + glfw_extension_cnt);
// Add the VK_KHR_portability_enumeration extension
extensions.push_back("VK_KHR_portability_enumeration");
VkInstanceCreateInfo create_info = {
.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO,
#if defined(__APPLE__)
.flags = VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR,
#endif // __APPLE__
.pApplicationInfo = &app_info,
.enabledLayerCount = found_layer_cnt,
.ppEnabledLayerNames =
found_layer_cnt == ctx.vk_validation_layers.size()
? ctx.vk_validation_layers.data()
: 0,
.enabledExtensionCount = (uint32_t)extensions.size(),
.ppEnabledExtensionNames = extensions.data()};
VkResult result = vkCreateInstance(&create_info, nullptr, &ctx.instance);
if (result != VK_SUCCESS) {
throw std::runtime_error("Failed to create Vulkan instance");
}
// print out the supported extensions
uint32_t vk_extensions_cnt = 0;
vkEnumerateInstanceExtensionProperties(nullptr, &vk_extensions_cnt,
nullptr);
for (const auto &ext : extensions) {
std::cout << '\t' << ext << std::endl;
}
/// setup vulkan device
// get physical device
uint32_t device_cnt = 0;
vkEnumeratePhysicalDevices(ctx.instance, &device_cnt, nullptr);
if (device_cnt == 0) {
throw std::runtime_error("No Vulkan Devices");
}
std::vector<VkPhysicalDevice> devices(device_cnt);
vkEnumeratePhysicalDevices(ctx.instance, &device_cnt, devices.data());
for (const VkPhysicalDevice &device : devices) {
VkPhysicalDeviceProperties device_props;
vkGetPhysicalDeviceProperties(device, &device_props);
std::cout << "Device: " << device_props.deviceName << std::endl;
VkPhysicalDeviceFeatures device_features;
vkGetPhysicalDeviceFeatures(device, &device_features);
if (device_props.deviceType == VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU) {
ctx.physical_device = device;
} else if (device_props.deviceType ==
VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU) {
ctx.physical_device = device;
}
std::cout << "\tUsing device: " << device_props.deviceName << std::endl;
}
/// create a windows surface
if (glfwCreateWindowSurface(ctx.instance, ctx.glfw_window, nullptr,
&ctx.surface) != VK_SUCCESS) {
throw std::runtime_error("Cannot create windows surface");
}
/// get the graphics queue family
uint32_t queue_family_cnt = 0;
vkGetPhysicalDeviceQueueFamilyProperties(ctx.physical_device,
&queue_family_cnt, nullptr);
std::vector<VkQueueFamilyProperties> queue_family_props(queue_family_cnt);
vkGetPhysicalDeviceQueueFamilyProperties(
ctx.physical_device, &queue_family_cnt, queue_family_props.data());
uint32_t queue_family_graphics_idx = -1;
int32_t i = 0;
for (const VkQueueFamilyProperties &queue_family : queue_family_props) {
// make sure this queue family can also present
VkBool32 present_support = false;
vkGetPhysicalDeviceSurfaceSupportKHR(ctx.physical_device, i,
ctx.surface, &present_support);
;
if ((queue_family.queueFlags & VK_QUEUE_GRAPHICS_BIT) &&
present_support == true) {
queue_family_graphics_idx = i;
}
i++;
}
/// create logical device
float queue_priority = 1.0f;
VkDeviceQueueCreateInfo device_queue_create_info_graphics = {
.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO,
.queueFamilyIndex = queue_family_graphics_idx,
.queueCount = 1,
.pQueuePriorities = &queue_priority};
VkPhysicalDeviceFeatures physical_device_features = {VK_FALSE};
// get the device extensions
uint32_t device_ext_cnt = 0;
vkEnumerateDeviceExtensionProperties(ctx.physical_device, nullptr,
&device_ext_cnt, nullptr);
std::vector<VkExtensionProperties> device_extensions(device_ext_cnt);
vkEnumerateDeviceExtensionProperties(ctx.physical_device, nullptr,
&device_ext_cnt,
device_extensions.data());
for (const VkExtensionProperties &prop : device_extensions) {
std::cout << "\t" << prop.extensionName << std::endl;
}
VkDeviceCreateInfo device_create_info = {
.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO,
.queueCreateInfoCount = 1,
.pQueueCreateInfos = &device_queue_create_info_graphics,
.enabledLayerCount = (uint32_t)ctx.vk_validation_layers.size(),
.ppEnabledLayerNames = ctx.vk_validation_layers.data(),
.enabledExtensionCount = (uint32_t)ctx.vk_device_extensions.size(),
.ppEnabledExtensionNames = ctx.vk_device_extensions.data(),
.pEnabledFeatures = &physical_device_features};
if (vkCreateDevice(ctx.physical_device, &device_create_info, nullptr,
&ctx.logical_device) != VK_SUCCESS) {
throw std::runtime_error("Failed to create logical device");
}
// get the device graphics queue
vkGetDeviceQueue(ctx.logical_device, queue_family_graphics_idx, 0,
&ctx.graphics_queue);
// get the device present queue
vkGetDeviceQueue(ctx.logical_device, queue_family_graphics_idx, 0,
&ctx.present_queue);
/// build the swap chain
VkSurfaceCapabilitiesKHR surface_capabilities;
vkGetPhysicalDeviceSurfaceCapabilitiesKHR(ctx.physical_device, ctx.surface,
&surface_capabilities);
uint32_t swapchain_image_cnt = surface_capabilities.minImageCount + 1;
VkPresentModeKHR present_mode = VK_PRESENT_MODE_FIFO_KHR;
uint32_t present_mode_cnt = 0;
vkGetPhysicalDeviceSurfacePresentModesKHR(ctx.physical_device, ctx.surface,
&present_mode_cnt, nullptr);
std::vector<VkPresentModeKHR> present_modes(present_mode_cnt);
vkGetPhysicalDeviceSurfacePresentModesKHR(ctx.physical_device, ctx.surface,
&present_mode_cnt,
present_modes.data());
// prefer mailbox over fifo
for (const VkPresentModeKHR &pm : present_modes) {
if (pm == VK_PRESENT_MODE_MAILBOX_KHR) {
present_mode = pm;
break;
}
}
uint32_t surface_format_cnt = 0;
vkGetPhysicalDeviceSurfaceFormatsKHR(ctx.physical_device, ctx.surface,
&surface_format_cnt, nullptr);
std::vector<VkSurfaceFormatKHR> surface_formats(surface_format_cnt);
vkGetPhysicalDeviceSurfaceFormatsKHR(ctx.physical_device, ctx.surface,
&surface_format_cnt,
surface_formats.data());
VkSwapchainCreateInfoKHR swapchain_create_info = {
.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR,
.surface = ctx.surface,
.minImageCount = swapchain_image_cnt,
.imageFormat = surface_formats[0].format,
.imageColorSpace = surface_formats[0].colorSpace,
.imageExtent = surface_capabilities.currentExtent,
.imageArrayLayers = 1,
.imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT,
.imageSharingMode = VK_SHARING_MODE_EXCLUSIVE,
.queueFamilyIndexCount = 0,
.pQueueFamilyIndices = nullptr,
.preTransform = surface_capabilities.currentTransform,
.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
.presentMode = present_mode,
.clipped = VK_TRUE,
.oldSwapchain = VK_NULL_HANDLE
};
if (vkCreateSwapchainKHR(ctx.logical_device, &swapchain_create_info,
nullptr, &ctx.swap_chain) != VK_SUCCESS) {
throw std::runtime_error("Failed to create swap chain :-(");
}
ctx.swap_chain_format = swapchain_create_info.imageFormat;
ctx.swap_chain_extent = swapchain_create_info.imageExtent;
/// create image views
uint32_t image_cnt = 0;
vkGetSwapchainImagesKHR(ctx.logical_device, ctx.swap_chain, &image_cnt,
nullptr);
ctx.swap_chain_images.resize(image_cnt);
ctx.image_views.resize(image_cnt);
vkGetSwapchainImagesKHR(ctx.logical_device, ctx.swap_chain, &image_cnt,
ctx.swap_chain_images.data());
for (size_t i = 0; i < ctx.swap_chain_images.size(); i++) {
VkImageViewCreateInfo image_create_info = {
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
.image = ctx.swap_chain_images[i],
.viewType = VK_IMAGE_VIEW_TYPE_2D,
.format = ctx.swap_chain_format,
.components = {VK_COMPONENT_SWIZZLE_IDENTITY,
VK_COMPONENT_SWIZZLE_IDENTITY,
VK_COMPONENT_SWIZZLE_IDENTITY,
VK_COMPONENT_SWIZZLE_IDENTITY},
.subresourceRange = {.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
.baseMipLevel = 0,
.levelCount = 1,
.baseArrayLayer = 0,
.layerCount = 1}};
if (vkCreateImageView(ctx.logical_device, &image_create_info, nullptr,
&ctx.image_views[i]) != VK_SUCCESS) {
throw std::runtime_error("Failed creating image view");
}
}
/// Create Render Pass
VkAttachmentDescription color_attachment = {
.format = swapchain_create_info.imageFormat,
.samples = VK_SAMPLE_COUNT_1_BIT,
.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR,
.storeOp = VK_ATTACHMENT_STORE_OP_STORE,
.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED,
.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR};
VkAttachmentReference color_attachment_ref = {
.attachment = 0, .layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL};
VkSubpassDescription subpass = {.pipelineBindPoint =
VK_PIPELINE_BIND_POINT_GRAPHICS,
.colorAttachmentCount = 1,
.pColorAttachments = &color_attachment_ref};
VkRenderPassCreateInfo render_pass_create_info = {
.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
.attachmentCount = 1,
.pAttachments = &color_attachment,
.subpassCount = 1,
.pSubpasses = &subpass};
if (vkCreateRenderPass(ctx.logical_device, &render_pass_create_info,
nullptr, &ctx.render_pass) != VK_SUCCESS) {
throw std::runtime_error("Could not create render pass");
}
/// Create the framebuffers
ctx.swap_chain_framebuffers.resize(ctx.image_views.size());
for (size_t i = 0; i < ctx.image_views.size(); i++) {
VkImageView attachments[] = {ctx.image_views[i]};
VkFramebufferCreateInfo framebuffer_create_info = {
.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO,
.renderPass = ctx.render_pass,
.attachmentCount = 1,
.pAttachments = attachments,
.width = ctx.swap_chain_extent.width,
.height = ctx.swap_chain_extent.height,
.layers = 1};
if (vkCreateFramebuffer(ctx.logical_device, &framebuffer_create_info,
nullptr, &ctx.swap_chain_framebuffers[i]) !=
VK_SUCCESS) {
throw std::runtime_error("Could not create frame buffer");
}
}
/// Command Pool
VkCommandPoolCreateInfo command_pool_create_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
.flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT,
.queueFamilyIndex = queue_family_graphics_idx};
if (vkCreateCommandPool(ctx.logical_device, &command_pool_create_info,
nullptr, &ctx.command_pool) != VK_SUCCESS) {
throw std::runtime_error("Could not create command pool");
}
/// Command Buffer
VkCommandBufferAllocateInfo command_buffer_alloc_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO,
.commandPool = ctx.command_pool,
.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY,
.commandBufferCount = 1};
if (vkAllocateCommandBuffers(ctx.logical_device, &command_buffer_alloc_info,
&ctx.command_buffer) != VK_SUCCESS) {
throw std::runtime_error("Could not create command buffer");
}
/// Sync Objects
VkSemaphoreCreateInfo sema_create_info = {
.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO};
VkFenceCreateInfo fence_create_info = {
.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO,
.flags = VK_FENCE_CREATE_SIGNALED_BIT};
vkCreateSemaphore(ctx.logical_device, &sema_create_info, nullptr,
&ctx.image_available_sema);
vkCreateSemaphore(ctx.logical_device, &sema_create_info, nullptr,
&ctx.render_finished_sema);
vkCreateFence(ctx.logical_device, &fence_create_info, nullptr,
&ctx.in_flight_fence);
}
uint32_t start_render(vulkan_test_ctx_t &ctx) {
vkWaitForFences(ctx.logical_device, 1, &ctx.in_flight_fence, VK_TRUE,
UINT64_MAX);
vkResetFences(ctx.logical_device, 1, &ctx.in_flight_fence);
uint32_t image_idx = 0;
vkAcquireNextImageKHR(ctx.logical_device, ctx.swap_chain, UINT64_MAX,
ctx.image_available_sema, VK_NULL_HANDLE, &image_idx);
vkResetCommandBuffer(ctx.command_buffer, 0);
VkCommandBufferBeginInfo command_buffer_begin_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO,
.flags = 0,
.pInheritanceInfo = nullptr};
if (vkBeginCommandBuffer(ctx.command_buffer, &command_buffer_begin_info) !=
VK_SUCCESS) {
throw std::runtime_error("Could not begin command buffer.");
}
VkClearValue clear_color = {1, 0, 0, 1};
VkRenderPassBeginInfo render_pass_begin_info = {
.sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
.renderPass = ctx.render_pass,
.framebuffer = ctx.swap_chain_framebuffers[image_idx],
.renderArea = {.offset = {0, 0}, .extent = ctx.swap_chain_extent},
.clearValueCount = 1,
.pClearValues = &clear_color};
vkCmdBeginRenderPass(ctx.command_buffer, &render_pass_begin_info,
VK_SUBPASS_CONTENTS_INLINE);
return image_idx;
}
void end_render(vulkan_test_ctx_t &ctx, uint32_t image_idx) {
// vkCmdBindPipeline(ctx.command_buffer, VK_PIPELINE_BIND_POINT_GRAPHICS,
// ctx.graphics_pipeline);
// vkCmdDraw(ctx.command_buffer, 3, 1, 0, 0);
vkCmdEndRenderPass(ctx.command_buffer);
if (vkEndCommandBuffer(ctx.command_buffer) != VK_SUCCESS) {
throw std::runtime_error("Failed to record command buffer");
}
/// submit the command buffer
VkSemaphore wait_semaphores[] = {ctx.image_available_sema};
VkPipelineStageFlags wait_stages[] = {
VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT};
VkSemaphore signal_semaphores[] = {ctx.render_finished_sema};
VkSubmitInfo submission = {.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO,
.waitSemaphoreCount = 1,
.pWaitSemaphores = wait_semaphores,
.pWaitDstStageMask = wait_stages,
.commandBufferCount = 1,
.pCommandBuffers = &ctx.command_buffer,
.signalSemaphoreCount = 1,
.pSignalSemaphores = signal_semaphores};
if (vkQueueSubmit(ctx.graphics_queue, 1, &submission,
ctx.in_flight_fence) != VK_SUCCESS) {
throw std::runtime_error("Failed to submit draw command buffer");
}
VkSwapchainKHR swap_chains[] = {ctx.swap_chain};
VkPresentInfoKHR present_info = {.sType =
VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
.waitSemaphoreCount = 1,
.pWaitSemaphores = signal_semaphores,
.swapchainCount = 1,
.pSwapchains = swap_chains,
.pImageIndices = &image_idx};
vkQueuePresentKHR(ctx.present_queue, &present_info);
}
void terminate_vulkan(vulkan_test_ctx_t &ctx) {
vkDestroySemaphore(ctx.logical_device, ctx.image_available_sema, nullptr);
vkDestroySemaphore(ctx.logical_device, ctx.render_finished_sema, nullptr);
vkDestroyFence(ctx.logical_device, ctx.in_flight_fence, nullptr);
vkDestroyCommandPool(ctx.logical_device, ctx.command_pool, nullptr);
for (auto fb : ctx.swap_chain_framebuffers) {
vkDestroyFramebuffer(ctx.logical_device, fb, nullptr);
}
vkDestroyPipeline(ctx.logical_device, ctx.graphics_pipeline, nullptr);
vkDestroyPipelineLayout(ctx.logical_device, ctx.pipeline_layout, nullptr);
vkDestroyRenderPass(ctx.logical_device, ctx.render_pass, nullptr);
vkDestroyShaderModule(ctx.logical_device, ctx.vert_shader_module, nullptr);
vkDestroyShaderModule(ctx.logical_device, ctx.frag_shader_module, nullptr);
for (auto image_view : ctx.image_views) {
vkDestroyImageView(ctx.logical_device, image_view, nullptr);
}
vkDestroySwapchainKHR(ctx.logical_device, ctx.swap_chain, nullptr);
vkDestroySurfaceKHR(ctx.instance, ctx.surface, nullptr);
vkDestroyDevice(ctx.logical_device, nullptr);
vkDestroyInstance(ctx.instance, nullptr);
}
int main(int, char **) {
vulkan_test_ctx_t vulkan_test_ctx;
const uint32_t WIDTH = 800;
const uint32_t HEIGHT = 600;
glfwInit();
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
vulkan_test_ctx.glfw_window =
glfwCreateWindow(WIDTH, HEIGHT, "Vulkan window", nullptr, nullptr);
uint32_t extensionCount = 0;
vkEnumerateInstanceExtensionProperties(nullptr, &extensionCount, nullptr);
std::cout << extensionCount << " extensions supported\n";
init_vulkan(vulkan_test_ctx);
// Initilize MonkVG
vgCreateContextMNK(WIDTH, HEIGHT, VG_RENDERING_BACKEND_TYPE_VULKAN);
// Initialize Vulkan Specific MonkVG with the Vulkan Context
vgSetVulkanContextMNK(
vulkan_test_ctx.instance, vulkan_test_ctx.physical_device,
vulkan_test_ctx.logical_device, vulkan_test_ctx.render_pass,
vulkan_test_ctx.command_buffer, vulkan_test_ctx.command_pool,
vulkan_test_ctx.graphics_queue, VK_NULL_HANDLE);
// create a simple box path
VGPath path = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F, 1,
0, 0, 0, VG_PATH_CAPABILITY_ALL);
vguRect(path, 0.0f, 0.0f, 100.0f, 150.0f);
// create fill and stroke paints
VGPaint fill_paint = vgCreatePaint();
vgSetPaint(fill_paint, VG_FILL_PATH);
VGfloat fill_color[4] = {0.0f, 1.0f, 0.0f, 1.0f};
vgSetParameterfv(fill_paint, VG_PAINT_COLOR, 4, &fill_color[0]);
VGPaint stroke_paint = vgCreatePaint();
vgSetPaint(stroke_paint, VG_STROKE_PATH);
VGfloat stroke_color[4] = {0.0f, 0.0f, 1.0f, 1.0f};
vgSetParameterfv(stroke_paint, VG_PAINT_COLOR, 4, &stroke_color[0]);
// Load the test image
int img_width, img_height, img_channels;
const char *filename = "assets/roy.png"; // Replace with your image path
unsigned char *img_data =
stbi_load(filename, &img_width, &img_height, &img_channels, 0);
if (img_data == nullptr) {
std::cerr << "Failed to load image: " << filename << std::endl;
return -1;
}
// Display image info
std::cout << "Loaded image: " << filename << std::endl;
std::cout << "Width: " << img_width << ", Height: " << img_height
<< ", Channels: " << img_channels << std::endl;
assert(img_channels == 4);
// Create an OpenVG image with the appropriate format
VGImage vg_image = vgCreateImage(VG_sRGBA_8888, img_width, img_height,
VG_IMAGE_QUALITY_BETTER);
// Copy the image data to the OpenVG image
vgImageSubData(vg_image, img_data, img_width * 4, VG_sRGBA_8888, 0, 0,
img_width, img_height);
// Free image memory
stbi_image_free(img_data);
// create a child image
// VGImage child_image =
// vgChildImage(vg_image, 0, 0, img_width / 2, img_height / 2);
while (!glfwWindowShouldClose(vulkan_test_ctx.glfw_window)) {
uint32_t image_idx = start_render(vulkan_test_ctx);
/// do an ortho camera
// NOTE: this is not standard OpenVG
// NOTE: Bottom left is 0,0
vgPushOrthoCamera(0.0f, (float)WIDTH, 0.0f, (float)HEIGHT, -1.0f, 1.0f);
/// draw the basic path
// set up path trasnform
vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
vgLoadIdentity();
vgTranslate(WIDTH / 2, HEIGHT / 2);
// stroke wideth
vgSetf(VG_STROKE_LINE_WIDTH, 5.0f);
// fill and stroke paints
vgSetPaint(fill_paint, VG_FILL_PATH);
vgSetPaint(stroke_paint, VG_STROKE_PATH);
// draw the path with fill and stroke
vgDrawPath(path, VG_FILL_PATH | VG_STROKE_PATH);
// draw the image
vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE);
vgLoadIdentity();
vgScale(0.25f, 0.25f);
vgTranslate(50, 50);
vgDrawImage(vg_image);
// draw the child image
// vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE);
// vgLoadIdentity();
// vgScale(0.25f, 0.25f);
// vgTranslate(50, 200);
// vgDrawImage(child_image);
// vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
// vgLoadIdentity();
// vgTranslate(20, 20);
// // stroke wideth
// vgSetf(VG_STROKE_LINE_WIDTH, 5.0f);
// // fill and stroke paints
// vgSetPaint(stroke_paint, VG_FILL_PATH);
// vgSetPaint(fill_paint, VG_STROKE_PATH);
// draw the path with fill and stroke
// vgDrawPath(path, VG_FILL_PATH | VG_STROKE_PATH);
vgPopOrthoCamera();
end_render(vulkan_test_ctx, image_idx);
glfwPollEvents();
std::this_thread::sleep_for(std::chrono::milliseconds(15));
}
vgDestroyPath(path);
vgDestroyPaint(fill_paint);
vgDestroyPaint(stroke_paint);
// vgDestroyImage(child_image);
vgDestroyImage(vg_image);
vgDestroyContextMNK();
terminate_vulkan(vulkan_test_ctx);
glfwDestroyWindow(vulkan_test_ctx.glfw_window);
glfwTerminate();
}