diff options
author | Keith Whitwell <[email protected]> | 2007-12-10 22:27:04 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-12-10 22:27:04 +0000 |
commit | f2feb2e4c7304b1c57af2f77f00766cb529822da (patch) | |
tree | d0bc9df64c5c4997ff6575237ecc734a33c2dd67 /src | |
parent | 7c306afdaad534cc4b474f07b4970bbf3ea46ff9 (diff) |
gallium: disable assert(0) in xmesa_surface()
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/pipe/xlib/xm_winsys.c | 2 |
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 ec171e3d9a2..c372545cf8c 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; } |