diff options
author | Brian Paul <[email protected]> | 2012-01-09 08:11:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-09 08:11:33 -0700 |
commit | b87b857d90008d045175a6673cabbf9e448d21bc (patch) | |
tree | cbd2465e6725b1da9a857b9da3df3abcb7596459 /src/mesa/main/fbobject.c | |
parent | 3f1fab06844f696de44d9a56e83ff62e8ea576bd (diff) |
mesa: fix error message in _mesa_BlitFramebufferEXT()
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r-- | src/mesa/main/fbobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 912436b4ff8..122b4172ad3 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -2716,7 +2716,7 @@ _mesa_BlitFramebufferEXT(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, drawFb->Visual.samples > 0 && readFb->Visual.samples != drawFb->Visual.samples) { _mesa_error(ctx, GL_INVALID_OPERATION, - "glBlitFramebufferEXT(mismatched samples"); + "glBlitFramebufferEXT(mismatched samples)"); return; } |