diff options
Diffstat (limited to 'Userland/Libraries/LibGL/SoftwareGLContext.cpp')
-rw-r--r-- | Userland/Libraries/LibGL/SoftwareGLContext.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGL/SoftwareGLContext.cpp b/Userland/Libraries/LibGL/SoftwareGLContext.cpp index 48a3faadc4..675751cb5c 100644 --- a/Userland/Libraries/LibGL/SoftwareGLContext.cpp +++ b/Userland/Libraries/LibGL/SoftwareGLContext.cpp @@ -2318,6 +2318,15 @@ void SoftwareGLContext::gl_materialv(GLenum face, GLenum pname, GLfloat const* p dbgln_if(GL_DEBUG, "SoftwareGLContext FIXME: gl_materialv({}, {}, {}, {}, {}, {})", face, pname, x, y, z, w); } +void SoftwareGLContext::gl_line_width(GLfloat width) +{ + APPEND_TO_CALL_LIST_AND_RETURN_IF_NEEDED(gl_line_width, width); + + RETURN_WITH_ERROR_IF(width <= 0, GL_INVALID_VALUE); + + m_line_width = width; +} + void SoftwareGLContext::present() { m_rasterizer.blit_to(*m_frontbuffer); |