mesa/version: only enable GL4.1 with correct limits.
[mesa.git] / src / mesa / main / lines.c
index 04b3e2ff126cfa15a8d4962e3e55b8fdce409a2c..78d3a7729b9b2f96733de1e284c0e659731ee7b4 100644 (file)
@@ -76,6 +76,14 @@ line_width(struct gl_context *ctx, GLfloat width, bool no_error)
 }
 
 
+void GLAPIENTRY
+_mesa_LineWidth_no_error(GLfloat width)
+{
+   GET_CURRENT_CONTEXT(ctx);
+   line_width(ctx, width, true);
+}
+
+
 void GLAPIENTRY
 _mesa_LineWidth(GLfloat width)
 {