diff options
author | Brian <brian@i915.localnet.net> | 2007-08-07 18:19:34 -0600 |
---|---|---|
committer | Brian <brian@i915.localnet.net> | 2007-08-07 18:24:29 -0600 |
commit | 204d35c0efa2e1e96cc318185acfe01c4a8edfbb (patch) | |
tree | f34a1f7cfeb10cb21e094a23d540885981c981cd /src | |
parent | b4784862b4d03727d1d50408837961c776c53481 (diff) |
remove dst!=src assertion
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_region.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/pipe/softpipe/sp_region.c b/src/mesa/pipe/softpipe/sp_region.c index a0ced3eb86..58749492ec 100644 --- a/src/mesa/pipe/softpipe/sp_region.c +++ b/src/mesa/pipe/softpipe/sp_region.c @@ -185,7 +185,6 @@ sp_region_copy(struct pipe_context *pipe, GLuint src_offset, GLuint srcx, GLuint srcy, GLuint width, GLuint height) { - assert( dst != src ); assert( dst->cpp == src->cpp ); _mesa_copy_rect(pipe->region_map(pipe, dst) + dst_offset, |