diff options
| author | Andre Weissflog <floooh@gmail.com> | 2024-02-18 15:24:47 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2024-02-18 15:24:47 +0100 |
| commit | b23e1f2f1d8493f0fd79d63ccff32abdf128e0de (patch) | |
| tree | 2c45ec09390567f25113f894126646cf91ac6d84 | |
| parent | 681bf81670b78f0e2f8f26943b147e3f4cff4c66 (diff) | |
sokol_gfx.h dummy: fix _sg_dummy_begin_pass()
| -rw-r--r-- | sokol_gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sokol_gfx.h b/sokol_gfx.h index 5fcc4427..1202033a 100644 --- a/sokol_gfx.h +++ b/sokol_gfx.h @@ -6384,7 +6384,7 @@ _SOKOL_PRIVATE _sg_image_t* _sg_dummy_attachments_ds_image(const _sg_attachments return atts->dmy.depth_stencil.image; } -_SOKOL_PRIVATE void _sg_dummy_begin_pass(const sg_pass* pass); +_SOKOL_PRIVATE void _sg_dummy_begin_pass(const sg_pass* pass) { SOKOL_ASSERT(pass); _SOKOL_UNUSED(pass); } |