From: Brian Date: Wed, 10 Oct 2007 22:19:49 +0000 (-0600) Subject: disable some assertions which pop up during window resize, but can be ignored for now X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d37e048cd1e24952214267a2c33cbaf346c10b26;p=mesa.git disable some assertions which pop up during window resize, but can be ignored for now --- diff --git a/src/mesa/pipe/softpipe/sp_surface.c b/src/mesa/pipe/softpipe/sp_surface.c index 27d4f064be0..29b5c9631c2 100755 --- a/src/mesa/pipe/softpipe/sp_surface.c +++ b/src/mesa/pipe/softpipe/sp_surface.c @@ -56,9 +56,10 @@ a8r8g8b8_read_quad_f_swz(struct softpipe_surface *sps, int x, int y, unsigned i, j; assert(sps->surface.format == PIPE_FORMAT_U_A8_R8_G8_B8); +#if 0 assert(x < (int) sps->surface.width - 1); assert(y < (int) sps->surface.height - 1); - +#endif for (i = 0; i < 2; i++) { /* loop over pixel row */ for (j = 0; j < 2; j++) { /* loop over pixel column */ const unsigned p = src[j];