fix rects render

This commit is contained in:
veclavtalica 2024-10-22 10:05:53 +03:00
parent 1296d41ad7
commit 8aecc2bd06
2 changed files with 4 additions and 4 deletions

View File

@ -693,9 +693,9 @@ size_t get_quad_payload_size(struct QuadBatch batch) {
else if (!batch.constant_colored && batch.textured) else if (!batch.constant_colored && batch.textured)
return sizeof (ElementIndexedQuad); return sizeof (ElementIndexedQuad);
else if (batch.constant_colored && !batch.textured) else if (batch.constant_colored && !batch.textured)
return sizeof (ElementIndexedQuadWithoutTexture);
else if (!batch.constant_colored && !batch.textured)
return sizeof (ElementIndexedQuadWithoutColorWithoutTexture); return sizeof (ElementIndexedQuadWithoutColorWithoutTexture);
else if (!batch.constant_colored && !batch.textured)
return sizeof (ElementIndexedQuadWithoutTexture);
SDL_assert(false); SDL_assert(false);
return 0; return 0;