diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 16:19:49 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-10 16:19:49 -0600 |
commit | d37e048cd1e24952214267a2c33cbaf346c10b26 (patch) | |
tree | e6f37a4a5764ccb59f4e96b3e1adedc8ab87068f | |
parent | d0bca086ab6d032909e9a429720fea297c536f97 (diff) |
disable some assertions which pop up during window resize, but can be ignored for now
-rwxr-xr-x | src/mesa/pipe/softpipe/sp_surface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_surface.c b/src/mesa/pipe/softpipe/sp_surface.c index 27d4f064be..29b5c9631c 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]; |