From 62622daa57736ade1f52bf13b673d5d79b787935 Mon Sep 17 00:00:00 2001 From: BZLZHH Date: Tue, 15 Jul 2025 01:13:42 +0800 Subject: [PATCH] [Fix] (Debug): Fix wrong LOG_V. --- src/main/cpp/gl/texture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cpp/gl/texture.cpp b/src/main/cpp/gl/texture.cpp index f1502c5..642c1b8 100644 --- a/src/main/cpp/gl/texture.cpp +++ b/src/main/cpp/gl/texture.cpp @@ -63,7 +63,7 @@ void internal_convert(GLenum* internal_format, GLenum* type, GLenum* format) { break; case GL_DEPTH_COMPONENT: - LOG_V("Find GL_DEPTH_COMPONENT: internalFormat: %s, format: %s, type: %s", glEnumToString(*internal_format), glEnumToString(*format), glEnumToString(*type)) + LOG_D("Find GL_DEPTH_COMPONENT: internalFormat: %s, format: %s, type: %s", glEnumToString(*internal_format), glEnumToString(*format), glEnumToString(*type)) if (type) { switch (*type) { case GL_UNSIGNED_SHORT: