r600c: properly align mipmaps to group size
fixes: https://bugs.freedesktop.org/show_bug.cgi?id=31400
This commit is contained in:
@@ -251,9 +251,9 @@ GLboolean radeonInitContext(radeonContextPtr radeon,
|
||||
radeon->texture_rect_row_align = 512;
|
||||
radeon->texture_compressed_row_align = 512;
|
||||
} else {
|
||||
radeon->texture_row_align = 256;
|
||||
radeon->texture_rect_row_align = 256;
|
||||
radeon->texture_compressed_row_align = 256;
|
||||
radeon->texture_row_align = radeon->radeonScreen->group_bytes;
|
||||
radeon->texture_rect_row_align = radeon->radeonScreen->group_bytes;
|
||||
radeon->texture_compressed_row_align = radeon->radeonScreen->group_bytes;
|
||||
}
|
||||
} else if (IS_R200_CLASS(radeon->radeonScreen) ||
|
||||
IS_R100_CLASS(radeon->radeonScreen)) {
|
||||
|
||||
@@ -1138,6 +1138,8 @@ radeonCreateScreen( __DRIscreen *sPriv )
|
||||
else
|
||||
screen->chip_flags |= RADEON_CLASS_R600;
|
||||
|
||||
/* set group bytes for r6xx+ */
|
||||
screen->group_bytes = 256;
|
||||
screen->cpp = dri_priv->bpp / 8;
|
||||
screen->AGPMode = dri_priv->AGPMode;
|
||||
|
||||
@@ -1382,7 +1384,8 @@ radeonCreateScreen2(__DRIscreen *sPriv)
|
||||
else
|
||||
screen->chip_flags |= RADEON_CLASS_R600;
|
||||
|
||||
/* r6xx+ tiling */
|
||||
/* r6xx+ tiling, default to 256 group bytes */
|
||||
screen->group_bytes = 256;
|
||||
if (IS_R600_CLASS(screen) && (sPriv->drm_version.minor >= 6)) {
|
||||
ret = radeonGetParam(sPriv, RADEON_INFO_TILE_CONFIG, &temp);
|
||||
if (ret)
|
||||
|
||||
Reference in New Issue
Block a user