From e4080aed0031ad4c5da65185ee71cd3478635b0f Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 30 Dec 2021 00:41:47 +0100 Subject: [PATCH] LibGL: Use standard debug message for `gl_materialv` --- Userland/Libraries/LibGL/SoftwareGLContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.cpp b/Userland/Libraries/LibGL/SoftwareGLContext.cpp index 22ceb68ca5..cc182668f6 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.cpp +++ b/Userland/Libraries/LibGL/SoftwareGLContext.cpp @@ -2625,7 +2625,7 @@ void SoftwareGLContext::gl_materialv(GLenum face, GLenum pname, GLfloat const* p } // FIXME: implement this method - dbgln_if(GL_DEBUG, "SoftwareGLContext FIXME: gl_materialv({}, {}, {}, {}, {}, {})", face, pname, x, y, z, w); + dbgln_if(GL_DEBUG, "gl_materialv({}, {}, {}, {}, {}, {}): unimplemented", face, pname, x, y, z, w); } void SoftwareGLContext::gl_line_width(GLfloat width)