Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
DoubangoTelecom committed Dec 21, 2022
1 parent aabce80 commit 09fb54a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gl/compv_gl_fbo.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#include "compv/gl/compv_gl_common.h"
#include "compv/gl/compv_gl_func.h"

#define THIS_CLASSNAME "CompVGLFbo"

COMPV_NAMESPACE_BEGIN()

CompVGLFbo::CompVGLFbo(size_t width, size_t height)
Expand Down Expand Up @@ -137,7 +139,7 @@ COMPV_ERROR_CODE CompVGLFbo::init(size_t width, size_t height)
m_nWidth = width;
m_nHeight = height;

COMPV_DEBUG_INFO("OpenGL FBO successfully created: FBO_id=%u, TEXT_id=%u, DEPTH_id=%u", m_uNameFrameBuffer, m_uNameTexture, m_uNameDepthStencil);
COMPV_DEBUG_VERBOSE_EX(THIS_CLASSNAME, "OpenGL FBO successfully created: FBO_id=%u, TEXT_id=%u, DEPTH_id=%u", m_uNameFrameBuffer, m_uNameTexture, m_uNameDepthStencil);

bail:
COMPV_glBindFramebuffer(GL_FRAMEBUFFER, 0);
Expand Down

0 comments on commit 09fb54a

Please sign in to comment.