Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool committed Dec 16, 2023
1 parent c1934ec commit e0e4eb4
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/platform/platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ void GLRenderCtx::cleanup() {
m_depthStencil = 0;
}
if (m_texture) {
log::info("deleting texture {}", m_texture);
glDeleteTextures(1, &m_texture);
m_texture = 0;
}
Expand Down Expand Up @@ -68,7 +67,6 @@ bool GLRenderCtx::begin() {

static int texture_count = 0;
texture_count++;
log::info("new texture is {}", m_texture);
if (texture_count > 100) {
exit(1);
}
Expand Down

0 comments on commit e0e4eb4

Please sign in to comment.