diff options
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 26bf76a007..ef9c74fb74 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -4891,7 +4891,7 @@ static void GLAPIENTRY save_Begin( GLenum mode ) Node *n; GLboolean error = GL_FALSE; - if (mode < GL_POINTS || mode > GL_POLYGON) { + if (/*mode < GL_POINTS ||*/ mode > GL_POLYGON) { _mesa_compile_error( ctx, GL_INVALID_ENUM, "Begin (mode)"); error = GL_TRUE; } |