summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2007-12-10 22:27:04 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2007-12-10 22:27:04 +0000
commitf2feb2e4c7304b1c57af2f77f00766cb529822da (patch)
treed0bc9df64c5c4997ff6575237ecc734a33c2dd67
parent7c306afdaad534cc4b474f07b4970bbf3ea46ff9 (diff)
gallium: disable assert(0) in xmesa_surface()
-rw-r--r--src/mesa/pipe/xlib/xm_winsys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/xlib/xm_winsys.c b/src/mesa/pipe/xlib/xm_winsys.c
index ec171e3d9a..c372545cf8 100644
--- a/src/mesa/pipe/xlib/xm_winsys.c
+++ b/src/mesa/pipe/xlib/xm_winsys.c
@@ -127,7 +127,7 @@ struct xmesa_softpipe_winsys
static INLINE struct xmesa_surface *
xmesa_surface(struct pipe_surface *ps)
{
- assert(0);
+// assert(0);
return (struct xmesa_surface *) ps;
}