diff options
author | Marek Olšák <[email protected]> | 2018-04-01 22:49:58 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-04-05 15:34:58 -0400 |
commit | be4250aa885a38a32ac6a8ad19e2655ec94be3a3 (patch) | |
tree | 26b76de26e2521086b1c304fc400366da9de2295 /src/gallium/drivers/radeonsi/si_texture.c | |
parent | c0dfc0c6df2f2a2126e96bb1fb91862d1ff0bfa2 (diff) |
radeonsi: remove more R600 references
Acked-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_texture.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_texture.c b/src/gallium/drivers/radeonsi/si_texture.c index 6aa12405566..0bab2a6c45b 100644 --- a/src/gallium/drivers/radeonsi/si_texture.c +++ b/src/gallium/drivers/radeonsi/si_texture.c @@ -1401,7 +1401,7 @@ si_choose_tiling(struct si_screen *sscreen, if (sscreen->debug_flags & DBG(NO_TILING)) return RADEON_SURF_MODE_LINEAR_ALIGNED; - /* Tiling doesn't work with the 422 (SUBSAMPLED) formats on R600+. */ + /* Tiling doesn't work with the 422 (SUBSAMPLED) formats. */ if (desc->layout == UTIL_FORMAT_LAYOUT_SUBSAMPLED) return RADEON_SURF_MODE_LINEAR_ALIGNED; |