aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-09-17 20:07:54 +0200
committerAndre Weissflog <floooh@gmail.com>2025-09-17 20:07:54 +0200
commit66073b72cca0bc94196a91106eaaca97190b81f9 (patch)
treea95e2eddecd0f20906bed51b2373ccc0b72df276 /util
parentbb59a62df8e2b849da3874b7656e2335d748d2ca (diff)
sokol_gfx_imgui.h: view the new sg_limits in the capabilities panel
Diffstat (limited to 'util')
-rw-r--r--util/sokol_gfx_imgui.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/sokol_gfx_imgui.h b/util/sokol_gfx_imgui.h
index 4f6b309d..49c5e7dd 100644
--- a/util/sokol_gfx_imgui.h
+++ b/util/sokol_gfx_imgui.h
@@ -4450,6 +4450,10 @@ _SOKOL_PRIVATE void _sgimgui_draw_caps_panel(void) {
_sgimgui_igtext(" max_image_size_array: %d", l.max_image_size_array);
_sgimgui_igtext(" max_image_array_layers: %d", l.max_image_array_layers);
_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_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("\nUsable Pixelformats:");