From b237d7fa14269bcd2847f9b6e40e8cebfec1f318 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 31 Aug 2006 17:24:55 +0000 Subject: [PATCH] When using the old technique to set up the front buffer mapping, there is no need to add front.offset to sPriv->pFB, it seems. Fixes several glean issues and frontbuffer rendering generally. --- src/mesa/drivers/dri/i965/intel_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/intel_screen.c b/src/mesa/drivers/dri/i965/intel_screen.c index affd905..14b461b 100644 --- a/src/mesa/drivers/dri/i965/intel_screen.c +++ b/src/mesa/drivers/dri/i965/intel_screen.c @@ -87,7 +87,7 @@ intelMapScreenRegions(__DRIscreenPrivate *sPriv) * the renderbuffer address to point to the beginning of the * renderbuffer. */ - intelScreen->front.map = sPriv->pFB + intelScreen->front.offset; + intelScreen->front.map = sPriv->pFB; if (intelScreen->front.map == NULL) { fprintf(stderr, "Failed to find framebuffer mapping\n"); return GL_FALSE; -- 2.7.4