aboutsummaryrefslogtreecommitdiff
path: root/sokol_app.h
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-11-02 12:44:14 +0100
committerAndre Weissflog <floooh@gmail.com>2025-11-02 12:44:14 +0100
commitcb1ac4939fbc6b44d6ab0eb9ff79efa8c87a4273 (patch)
tree54384ba775120d4ef7527c465843c95994976938 /sokol_app.h
parent84ee4c97dc681aa4d5c8b4edf0d547ef59227c6e (diff)
sokol_app.h vk: require VK_EXT_descriptor_buffer
Diffstat (limited to 'sokol_app.h')
-rw-r--r--sokol_app.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sokol_app.h b/sokol_app.h
index 4807bfc3..735bff2b 100644
--- a/sokol_app.h
+++ b/sokol_app.h
@@ -4343,6 +4343,7 @@ _SOKOL_PRIVATE uint32_t _sapp_vk_get_device_extensions(const char** out_names, u
out_names[count++] = VK_KHR_SPIRV_1_4_EXTENSION_NAME;
out_names[count++] = VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME;
out_names[count++] = VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME;
+ out_names[count++] = VK_EXT_DESCRIPTOR_BUFFER_EXTENSION_NAME;
SOKOL_ASSERT(count <= max_count);
return count;
}