aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-09-22 14:52:39 +0200
committerAndre Weissflog <floooh@gmail.com>2025-09-22 14:52:39 +0200
commitea3ecb9ec18f3921f454393a163dd8c04cfe6a4b (patch)
tree79dd3cd42d00ff45f2875b60e72c1babdfb69b05 /util
parentcf74b4edb3331f4d074c33c2a465ab4434679a79 (diff)
sokol_gfx.h d3d11: dynamic resource limits wip
Diffstat (limited to 'util')
-rw-r--r--util/sokol_gfx_imgui.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/sokol_gfx_imgui.h b/util/sokol_gfx_imgui.h
index e7279aac..fb6a6b23 100644
--- a/util/sokol_gfx_imgui.h
+++ b/util/sokol_gfx_imgui.h
@@ -4452,10 +4452,12 @@ _SOKOL_PRIVATE void _sgimgui_draw_caps_panel(void) {
_sgimgui_igtext(" max_vertex_attrs: %d", l.max_vertex_attrs);
_sgimgui_igtext(" max_color_attachments: %d", l.max_color_attachments);
_sgimgui_igtext(" max_texture_bindings_per_stage: %d", l.max_texture_bindings_per_stage);
- _sgimgui_igtext(" max_storage_buffer_bindings_per_stage: %d", l.max_storage_buffer_bindings_per_stage);
+ _sgimgui_igtext(" max_readonly_storage_buffer_bindings_per_stage: %d", l.max_readonly_storage_buffer_bindings_per_stage);
+ _sgimgui_igtext(" max_writable_storage_buffer_bindings_per_stage: %d", l.max_writable_storage_buffer_bindings_per_stage);
_sgimgui_igtext(" max_storage_image_bindings_per_stage: %d", l.max_storage_image_bindings_per_stage);
_sgimgui_igtext(" gl_max_vertex_uniform_components: %d", l.gl_max_vertex_uniform_components);
_sgimgui_igtext(" gl_max_combined_texture_image_units: %d", l.gl_max_combined_texture_image_units);
+ _sgimgui_igtext(" d3d11_max_unordered_access_views: %d", l.d3d11_max_unordered_access_views);
_sgimgui_igtext("\nStruct Sizes:\n");
_sgimgui_igtext(" sg_desc: %d bytes\n", (int)sizeof(sg_desc));
_sgimgui_igtext(" sg_buffer_desc: %d bytes\n", (int)sizeof(sg_buffer_desc));