summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-08 22:45:42 +0200
committerGitHub <noreply@github.com>2018-08-08 22:45:42 +0200
commit599c011f40d153c6d9b42c42b4f83ef2d1377ecb (patch)
treebed70eb70ce4a615dd83813bf622f35446706caa /src
parentMerge pull request #966 from lioncash/modernize (diff)
parentrenderer_opengl: Use trace log in a few places. (diff)
downloadyuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.gz
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.bz2
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.lz
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.xz
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.zst
yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp2
-rw-r--r--src/video_core/renderer_opengl/renderer_opengl.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index c2a931469..b87b87e03 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -161,7 +161,7 @@ std::pair<u8*, GLintptr> RasterizerOpenGL::SetupVertexArrays(u8* array_ptr,
// assume every shader uses them all.
for (unsigned index = 0; index < 16; ++index) {
auto& attrib = regs.vertex_attrib_format[index];
- LOG_DEBUG(HW_GPU, "vertex attrib {}, count={}, size={}, type={}, offset={}, normalize={}",
+ LOG_TRACE(HW_GPU, "vertex attrib {}, count={}, size={}, type={}, offset={}, normalize={}",
index, attrib.ComponentCount(), attrib.SizeString(), attrib.TypeString(),
attrib.offset.Value(), attrib.IsNormalized());
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp
index bf9131193..899865e3b 100644
--- a/src/video_core/renderer_opengl/renderer_opengl.cpp
+++ b/src/video_core/renderer_opengl/renderer_opengl.cpp
@@ -430,7 +430,7 @@ static void APIENTRY DebugHandler(GLenum source, GLenum type, GLuint id, GLenum
break;
case GL_DEBUG_SEVERITY_NOTIFICATION:
case GL_DEBUG_SEVERITY_LOW:
- LOG_DEBUG(Render_OpenGL, format, str_source, str_type, id, message);
+ LOG_TRACE(Render_OpenGL, format, str_source, str_type, id, message);
break;
}
}