diff options
| author | 2018-08-08 16:45:42 -0400 | |
|---|---|---|
| committer | 2018-08-08 16:45:42 -0400 | |
| commit | 599c011f40d153c6d9b42c42b4f83ef2d1377ecb (patch) | |
| tree | bed70eb70ce4a615dd83813bf622f35446706caa /src | |
| parent | Merge pull request #966 from lioncash/modernize (diff) | |
| parent | renderer_opengl: Use trace log in a few places. (diff) | |
| download | yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.gz yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.tar.xz yuzu-599c011f40d153c6d9b42c42b4f83ef2d1377ecb.zip | |
Merge pull request #980 from bunnei/fix-logs
renderer_opengl: Use trace log in a few places.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.cpp | 2 |
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, | |||
| 161 | // assume every shader uses them all. | 161 | // assume every shader uses them all. |
| 162 | for (unsigned index = 0; index < 16; ++index) { | 162 | for (unsigned index = 0; index < 16; ++index) { |
| 163 | auto& attrib = regs.vertex_attrib_format[index]; | 163 | auto& attrib = regs.vertex_attrib_format[index]; |
| 164 | LOG_DEBUG(HW_GPU, "vertex attrib {}, count={}, size={}, type={}, offset={}, normalize={}", | 164 | LOG_TRACE(HW_GPU, "vertex attrib {}, count={}, size={}, type={}, offset={}, normalize={}", |
| 165 | index, attrib.ComponentCount(), attrib.SizeString(), attrib.TypeString(), | 165 | index, attrib.ComponentCount(), attrib.SizeString(), attrib.TypeString(), |
| 166 | attrib.offset.Value(), attrib.IsNormalized()); | 166 | attrib.offset.Value(), attrib.IsNormalized()); |
| 167 | 167 | ||
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 | |||
| 430 | break; | 430 | break; |
| 431 | case GL_DEBUG_SEVERITY_NOTIFICATION: | 431 | case GL_DEBUG_SEVERITY_NOTIFICATION: |
| 432 | case GL_DEBUG_SEVERITY_LOW: | 432 | case GL_DEBUG_SEVERITY_LOW: |
| 433 | LOG_DEBUG(Render_OpenGL, format, str_source, str_type, id, message); | 433 | LOG_TRACE(Render_OpenGL, format, str_source, str_type, id, message); |
| 434 | break; | 434 | break; |
| 435 | } | 435 | } |
| 436 | } | 436 | } |