aboutsummaryrefslogtreecommitdiff
path: root/sokol_glue.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-10-13 21:27:11 +0200
committerAndre Weissflog <floooh@gmail.com>2025-10-13 21:27:11 +0200
commitfaafae618632276aa026bbb41eedfbfcb109a8a4 (patch)
tree27971fec3a759bc72cb62d2f1651411e3870912a /sokol_glue.h
parentb1b812887779768f29ccd8dea8014f09aa200a8c (diff)
sokol_gfx.h vk: basic frame loop wip
Diffstat (limited to 'sokol_glue.h')
-rw-r--r--sokol_glue.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sokol_glue.h b/sokol_glue.h
index 718700fc..5fc4a510 100644
--- a/sokol_glue.h
+++ b/sokol_glue.h
@@ -190,8 +190,11 @@ SOKOL_API_IMPL sg_swapchain sglue_swapchain_next(void) {
res.wgpu.render_view = sc.wgpu.render_view;
res.wgpu.resolve_view = sc.wgpu.resolve_view;
res.wgpu.depth_stencil_view = sc.wgpu.depth_stencil_view;
+ res.vulkan.render_image = sc.vulkan.render_image;
res.vulkan.render_view = sc.vulkan.render_view;
+ res.vulkan.resolve_image = sc.vulkan.resolve_image;
res.vulkan.resolve_view = sc.vulkan.resolve_view;
+ res.vulkan.depth_stencil_image = sc.vulkan.depth_stencil_image;
res.vulkan.depth_stencil_view = sc.vulkan.depth_stencil_view;
res.vulkan.render_finished_semaphore = sc.vulkan.render_finished_semaphore;
res.vulkan.present_complete_semaphore = sc.vulkan.present_complete_semaphore;