radeon: Remove copied minimum pitch alignment code.
authorEric Anholt <eric@anholt.net>
Thu, 23 Sep 2010 23:13:50 +0000 (16:13 -0700)
committerEric Anholt <eric@anholt.net>
Thu, 23 Sep 2010 23:20:25 +0000 (16:20 -0700)
This is already covered by radeon_mipmap_tree.c, and my convolution
cleanups broke in the presence of this code.  Thanks to Marek Olšák
for tracking down the relevant miptree code for me.

src/mesa/drivers/dri/radeon/radeon_texture.c

index bf30e0cab8bd350d50988c2855395fa354ace1d1..d1ebd83550d21f2dac8468c81e94dffc023791c6 100644 (file)
@@ -792,18 +792,6 @@ static void radeon_teximage(
 
        t->validated = GL_FALSE;
 
-       if (!_mesa_is_format_compressed(texImage->TexFormat)) {
-               GLuint texelBytes = _mesa_get_format_bytes(texImage->TexFormat);
-               /* Minimum pitch of 32 bytes */
-               if (width * texelBytes < 32) {
-                       width = 32 / texelBytes;
-                       texImage->RowStride = width;
-               }
-               if (!image->mt) {
-                       assert(texImage->RowStride == width);
-               }
-       }
-
        /* Mesa core only clears texImage->Data but not image->mt */
        radeonFreeTexImageData(ctx, texImage);