intel: Drop gen_device_info::has_resource_streamer

We've never done anything with that HW and it was removed in ICL.
There's no point in carrying around the useless field.

Acked-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10069>
This commit is contained in:
Jason Ekstrand 2021-04-06 21:39:56 -05:00 committed by Marge Bot
parent 8ec530d982
commit 26c3a509de
2 changed files with 1 additions and 4 deletions

View File

@ -310,8 +310,7 @@ static const struct gen_device_info gen_device_info_byt = {
GFX7_FEATURES, \
.is_haswell = true, \
.verx10 = 75, \
.supports_simd16_3src = true, \
.has_resource_streamer = true
.supports_simd16_3src = true
static const struct gen_device_info gen_device_info_hsw_gt1 = {
HSW_FEATURES, .gt = 1,
@ -403,7 +402,6 @@ static const struct gen_device_info gen_device_info_hsw_gt3 = {
#define GFX8_FEATURES \
.ver = 8, \
.has_hiz_and_separate_stencil = true, \
.has_resource_streamer = true, \
.must_use_separate_stencil = true, \
.has_llc = true, \
.has_sample_with_hiz = false, \

View File

@ -81,7 +81,6 @@ struct gen_device_info
bool has_compr4;
bool has_surface_tile_offset;
bool supports_simd16_3src;
bool has_resource_streamer;
bool disable_ccs_repack;
bool has_aux_map;
bool has_tiling_uapi;