diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-09-27 17:32:46 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-09-27 17:32:46 +0200 |
| commit | b71882b56db866f03aef364f6f7766c12d9b6065 (patch) | |
| tree | 7af022e60241b7678840fd72a8a0d3231e723df9 /util | |
| parent | 672090beee553aa4ec61d88991d20794e2a4bae0 (diff) | |
sokol_gfx.h: remove separate sg_limits.max_readonly/writable_storage_buffer_bindings_per_stage
Diffstat (limited to 'util')
| -rw-r--r-- | util/sokol_gfx_imgui.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/sokol_gfx_imgui.h b/util/sokol_gfx_imgui.h index fb6a6b23..ab65d234 100644 --- a/util/sokol_gfx_imgui.h +++ b/util/sokol_gfx_imgui.h @@ -4452,8 +4452,7 @@ _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_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_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); |