diff options
author | Dave Airlie <[email protected]> | 2011-11-11 15:28:31 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-12-05 11:31:15 +0000 |
commit | 6d573c4dd7d90eb2c1748102924bdac1bb8fd50a (patch) | |
tree | c2d791c26152d283e2e4d50179d57666bc4f9d75 /src | |
parent | fbfa80703449365415c9db6d189dd0a6a35fb4d4 (diff) |
radeon: drop border check
now that we strip borders off earlier.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_texstate.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_texstate.c b/src/mesa/drivers/dri/radeon/radeon_texstate.c index e6fb121390e..ff9351ac6b4 100644 --- a/src/mesa/drivers/dri/radeon/radeon_texstate.c +++ b/src/mesa/drivers/dri/radeon/radeon_texstate.c @@ -982,11 +982,6 @@ static GLboolean setup_hardware_state(r100ContextPtr rmesa, radeonTexObj *t, int firstImage = t->base.Image[0][t->minLod]; - if (firstImage->Border > 0) { - fprintf(stderr, "%s: border\n", __FUNCTION__); - return GL_FALSE; - } - log2Width = firstImage->WidthLog2; log2Height = firstImage->HeightLog2; texelBytes = _mesa_get_format_bytes(firstImage->TexFormat); |