diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-09-27 17:49:33 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-09-27 17:49:33 +0200 |
| commit | 9ec80fd79f3a07ce693e51e39c2a5868654638d9 (patch) | |
| tree | 98d4fcdeaca09657438595e08ac6b450684fba6b /tests/functional | |
| parent | 5f002aa9311a89fd5e757d1bcdb8c9673bda0430 (diff) | |
fix sokol-gfx tests
Diffstat (limited to 'tests/functional')
| -rw-r--r-- | tests/functional/sokol_gfx_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/sokol_gfx_test.c b/tests/functional/sokol_gfx_test.c index cfe92d60..42beb4e4 100644 --- a/tests/functional/sokol_gfx_test.c +++ b/tests/functional/sokol_gfx_test.c @@ -2603,7 +2603,7 @@ UTEST(sokol_gfx, max_writable_storagebuffer_bindings_per_stage_cs) { } sg_shader shd = sg_make_shader(&desc); T(sg_query_shader_state(shd) == SG_RESOURCESTATE_FAILED); - T(log_items[0] == SG_LOGITEM_SHADERDESC_TOO_MANY_COMPUTESTAGE_WRITABLE_STORAGEBUFFERS); + T(log_items[0] == SG_LOGITEM_SHADERDESC_TOO_MANY_COMPUTESTAGE_STORAGEBUFFERS); sg_shutdown(); } @@ -2616,7 +2616,7 @@ UTEST(sokol_gfx, max_readonly_storagebuffer_bindings_per_stage_cs) { } sg_shader shd = sg_make_shader(&desc); T(sg_query_shader_state(shd) == SG_RESOURCESTATE_FAILED); - T(log_items[0] == SG_LOGITEM_SHADERDESC_TOO_MANY_COMPUTESTAGE_READONLY_STORAGEBUFFERS); + T(log_items[0] == SG_LOGITEM_SHADERDESC_TOO_MANY_COMPUTESTAGE_STORAGEBUFFERS); sg_shutdown(); } |