diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-03-27 17:51:33 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-03-27 17:51:33 +0000 |
commit | 98fc9b36b641ab323da9826d2ea430b1441e9d96 (patch) | |
tree | cc6efc15c1d5c09accb068375ada9aae7a4363ff | |
parent | a5607f2a04e6a85bec6bc9f016313713289fc8c6 (diff) |
fixed ColorMask problem for front-buffer rendering
-rw-r--r-- | src/mesa/drivers/x11/xm_dd.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/drivers/x11/xm_dd.c b/src/mesa/drivers/x11/xm_dd.c index f5fb1726b8..230bee3e02 100644 --- a/src/mesa/drivers/x11/xm_dd.c +++ b/src/mesa/drivers/x11/xm_dd.c @@ -1,10 +1,10 @@ -/* $Id: xm_dd.c,v 1.44 2003/03/25 02:29:46 brianp Exp $ */ +/* $Id: xm_dd.c,v 1.45 2003/03/27 17:51:33 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 4.0.3 + * Version: 5.1 * - * Copyright (C) 1999-2002 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2003 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -23,7 +23,7 @@ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $XFree86: xc/extras/Mesa/src/X/xm_dd.c,v 1.2 2002/02/26 23:37:31 tsi Exp $ */ + #include "glxheader.h" #include "context.h" @@ -245,6 +245,7 @@ color_mask(GLcontext *ctx, if (bmask) m |= GET_BLUEMASK(xmesa->xm_visual); } XMesaSetPlaneMask( xmesa->display, xmesa->xm_draw_buffer->cleargc, m ); + XMesaSetPlaneMask( xmesa->display, xmesa->xm_draw_buffer->gc, m ); } } |