diff options
| author | Andre Weissflog <floooh@gmail.com> | 2026-01-24 13:47:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-24 13:47:44 +0100 |
| commit | 8d0436e28458eb78e664607a9c272d6d9aabf015 (patch) | |
| tree | cf8aea88ab2ba7d14ada4b14c947ecee3e11b3b1 /sokol_glue.h | |
| parent | 5a6100f6b8d94e308aa3023aac0a8635ca5fe185 (diff) | |
Vulkan backend: enable debug object labels. (#1422)
Diffstat (limited to 'sokol_glue.h')
| -rw-r--r-- | sokol_glue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sokol_glue.h b/sokol_glue.h index c8f2a2ff..d9a2ad4d 100644 --- a/sokol_glue.h +++ b/sokol_glue.h @@ -166,6 +166,7 @@ SOKOL_API_IMPL sg_environment sglue_environment(void) { res.d3d11.device = env.d3d11.device; res.d3d11.device_context = env.d3d11.device_context; res.wgpu.device = env.wgpu.device; + res.vulkan.instance = env.vulkan.instance; res.vulkan.physical_device = env.vulkan.physical_device; res.vulkan.device = env.vulkan.device; res.vulkan.queue = env.vulkan.queue; |