Skip to content

Commit

Permalink
remove debug printf
Browse files Browse the repository at this point in the history
  • Loading branch information
ColleagueRiley committed Jun 7, 2024
1 parent e51fa93 commit e805080
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions RSGL.h
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,6 @@ RSGL_RENDER_INFO RSGL_renderInfo = {NULL, NULL, NULL, NULL, 0, 0};
void RSGL_basicDraw(u32 type, float* points, float* texPoints, RSGL_color c, size_t len) {
if (RSGL_renderInfo.len + 1 >= RSGL_MAX_BATCHES || RSGL_renderInfo.vert_len + len >= RSGL_MAX_VERTS) {
RSGL_renderBatch(&RSGL_renderInfo);
printf("%lli\n", len);
}

RSGL_BATCH* batch = NULL;
Expand Down Expand Up @@ -3402,4 +3401,4 @@ RSGL_MATRIX RSGL_matrixMultiply(float left[16], float right[16]) {
}
};
}
#endif /* RSGL_IMPLEMENTATION */
#endif /* RSGL_IMPLEMENTATION */

0 comments on commit e805080

Please sign in to comment.