summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/common
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-31 10:52:44 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-31 10:52:44 -0600
commit2860f609949ced58caeb4828e7d2a34439d767da (patch)
tree2c38d38cb3aea28d5b11eec4e0f124db7c7cbf64 /src/mesa/drivers/dri/common
parentfe55eab8fa976fdf3d30b1d8160e4bb10e754e2d (diff)
re-enable fb size assertions which were previously disabled
Diffstat (limited to 'src/mesa/drivers/dri/common')
-rw-r--r--src/mesa/drivers/dri/common/drirenderbuffer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/common/drirenderbuffer.c b/src/mesa/drivers/dri/common/drirenderbuffer.c
index d4f7f2527b..d34da53479 100644
--- a/src/mesa/drivers/dri/common/drirenderbuffer.c
+++ b/src/mesa/drivers/dri/common/drirenderbuffer.c
@@ -209,11 +209,9 @@ driUpdateFramebufferSize(GLcontext *ctx, const __DRIdrawablePrivate *dPriv)
struct gl_framebuffer *fb = (struct gl_framebuffer *) dPriv->driverPrivate;
if (fb && (dPriv->w != fb->Width || dPriv->h != fb->Height)) {
ctx->Driver.ResizeBuffers(ctx, fb, dPriv->w, dPriv->h);
-#if 0
/* if the driver needs the hw lock for ResizeBuffers, the drawable
might have changed again by now */
assert(fb->Width == dPriv->w);
assert(fb->Height == dPriv->h);
-#endif
}
}