diff options
author | Brian Paul <[email protected]> | 2002-02-15 19:15:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-02-15 19:15:33 +0000 |
commit | 9ac7182ec4558cb0c3a6481c72732f05feb50a60 (patch) | |
tree | 08d1621de181c6bf83e0666ec61a3063e9a52061 /src/mesa/drivers/x11/xmesaP.h | |
parent | 026c036be0cff7921341a6ea66bc99c4c4761557 (diff) |
use separate GC for SwapBuffers to avoid colormask problem
Diffstat (limited to 'src/mesa/drivers/x11/xmesaP.h')
-rw-r--r-- | src/mesa/drivers/x11/xmesaP.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/x11/xmesaP.h b/src/mesa/drivers/x11/xmesaP.h index 6ff7ae597f6..d0755701fdd 100644 --- a/src/mesa/drivers/x11/xmesaP.h +++ b/src/mesa/drivers/x11/xmesaP.h @@ -1,10 +1,10 @@ -/* $Id: xmesaP.h,v 1.24 2001/09/01 20:23:25 brianp Exp $ */ +/* $Id: xmesaP.h,v 1.25 2002/02/15 19:15:33 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.2 * - * Copyright (C) 1999-2000 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2002 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"), @@ -190,6 +190,7 @@ struct xmesa_buffer { XMesaGC gc; /* scratch GC for span, line, tri drawing */ XMesaGC cleargc; /* GC for clearing the color buffer */ + XMesaGC swapgc; /* GC for swapping the color buffers */ /* The following are here instead of in the XMesaVisual * because they depend on the window's colormap. |