diff options
| author | kkard2 <[email protected]> | 2025-09-07 11:02:24 +0200 |
|---|---|---|
| committer | kkard2 <[email protected]> | 2025-09-07 11:02:24 +0200 |
| commit | 14288e6b15e8c8a61ccfcf859583268529776f11 (patch) | |
| tree | 732c3c71cb5735b36987c60095bb6e3033c22bd8 | |
| parent | c58b1427aade2976058aca1c246ce740044913bc (diff) | |
handle some edge cases with 0 sized canvas
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | run.bat | 2 | ||||
| -rw-r--r-- | sponge.h | 9 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,5 @@ *.exe *.obj -platform_x11 +*.ilk +*.pdb +*.rdi @@ -1,4 +1,4 @@ del out.exe del *.obj -cl platform_win32.c "examples\%1" user32.lib gdi32.lib /W3 /Fe:out.exe +cl platform_win32.c "examples\%1" user32.lib gdi32.lib /W3 /Fe:out.exe /Z7 out.exe @@ -15,7 +15,13 @@ void sponge_draw_texture(sponge_Texture c, uint32_t x0, uint32_t y0, sponge_Text #ifdef SPONGE_IMPLEMENTATION +int sponge__canvas_valid(sponge_Texture c) { + return c.width != 0 && c.height != 0; +} + void sponge_clear(sponge_Texture c, uint32_t color) { + if (!sponge__canvas_valid(c)) + return; sponge_draw_rect(c, 0, 0, c.width - 1, c.height - 1, color); } @@ -32,6 +38,9 @@ void sponge_draw_rect(sponge_Texture c, uint32_t x0, uint32_t y0, uint32_t x1, u } void sponge_draw_texture(sponge_Texture c, uint32_t x0, uint32_t y0, sponge_Texture tex) { + if (!sponge__canvas_valid(c)) + return; + uint32_t *row_dst = c.pixels + (y0 * c.stride); uint32_t *row_src = tex.pixels; uint32_t x1 = x0 + tex.width; |
