diff options
author | Brian Paul <[email protected]> | 2010-01-07 08:49:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-07 09:20:48 -0700 |
commit | c642c246d7c908976505ee18fbf328572e213499 (patch) | |
tree | c6ba47001e55036160a23f6012b1d4f9f7acaed6 /src | |
parent | c3e846af30a3791a4bf80ac53c2e2d3cd6882d8f (diff) |
gallium/util: remove useless assertions
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_rect.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/auxiliary/util/u_rect.c b/src/gallium/auxiliary/util/u_rect.c index 10c8bd748bf..8479161c744 100644 --- a/src/gallium/auxiliary/util/u_rect.c +++ b/src/gallium/auxiliary/util/u_rect.c @@ -65,10 +65,6 @@ util_copy_rect(ubyte * dst, assert(blocksize > 0); assert(blockwidth > 0); assert(blockheight > 0); - assert(src_x >= 0); - assert(src_y >= 0); - assert(dst_x >= 0); - assert(dst_y >= 0); dst_x /= blockwidth; dst_y /= blockheight; @@ -113,8 +109,6 @@ util_fill_rect(ubyte * dst, assert(blocksize > 0); assert(blockwidth > 0); assert(blockheight > 0); - assert(dst_x >= 0); - assert(dst_y >= 0); dst_x /= blockwidth; dst_y /= blockheight; |