From e0e4eb498e36cf0f97ffb6359fdb44cf147757bc Mon Sep 17 00:00:00 2001 From: matcool <26722564+matcool@users.noreply.github.com> Date: Sat, 16 Dec 2023 09:30:27 -0300 Subject: [PATCH] remove logs --- src/platform/platform.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/platform/platform.cpp b/src/platform/platform.cpp index 97acbd8..1412385 100644 --- a/src/platform/platform.cpp +++ b/src/platform/platform.cpp @@ -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; } @@ -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); }