The driOps field of this structure is never set to anything but &driGCOps, and this structure is not visible outside this source file. Just use the constant in the one place the field was used.
Signed-off-by: Jamey Sharp <[email protected]> Cc: Jeremy Huddleston <[email protected]> --- hw/xquartz/xpr/driWrap.c | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/hw/xquartz/xpr/driWrap.c b/hw/xquartz/xpr/driWrap.c index 65843b8..de5c4a2 100644 --- a/hw/xquartz/xpr/driWrap.c +++ b/hw/xquartz/xpr/driWrap.c @@ -41,7 +41,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. typedef struct { GCOps *originalOps; - GCOps *driOps; } DRIGCRec; typedef struct { @@ -86,9 +85,7 @@ DRIUnwrapGC(GCPtr pGC) { static void DRIWrapGC(GCPtr pGC) { - DRIGCRec *pGCPriv = DRIGetGCPriv(pGC); - - pGC->ops = pGCPriv->driOps; + pGC->ops = &driGCOps; } static void @@ -513,7 +510,6 @@ DRICreateGC(GCPtr pGC) { if(ret) { pGCPriv->originalOps = pGC->ops; pGC->ops = &driGCOps; - pGCPriv->driOps = &driGCOps; } wrap(pScreenPriv, pScreen, CreateGC, DRICreateGC); -- 1.7.0 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
