generate GL_INVALID_OPERATION in glAccum if read/draw buffers aren't the same

This commit is contained in:
Brian Paul
2005-09-27 15:52:27 +00:00
parent 99796464c5
commit 78b3b667b5
+8 -1
View File
@@ -1,6 +1,6 @@
/*
* Mesa 3-D graphics library
* Version: 6.3
* Version: 6.5
*
* Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
*
@@ -76,6 +76,13 @@ _mesa_Accum( GLenum op, GLfloat value )
return;
}
if (ctx->DrawBuffer != ctx->ReadBuffer) {
/* See GLX_SGI_make_current_read or WGL_ARB_make_current_read */
_mesa_error(ctx, GL_INVALID_OPERATION,
"glAccum(different read/draw buffers)");
return;
}
if (ctx->NewState)
_mesa_update_state( ctx );