diff options
author | Francisco Jerez <[email protected]> | 2016-07-18 18:06:02 -0700 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2016-08-25 18:36:07 -0700 |
commit | 74e4baec59a5697ec2511733f16421bfd32f4145 (patch) | |
tree | 3269021947124edb375a47c37704fbcd58d0b76a /src | |
parent | 0fe732e66f10f526b9187c4d11f134282f5209c8 (diff) |
i965: Add missing has_surface_tile_offset flag to the Gen8+ device info structures.
This surface state control has been supported by all hardware
generations since G45.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 56209771535..fb224fae234 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -249,6 +249,7 @@ static const struct brw_device_info brw_device_info_hsw_gt3 = { .has_llc = true, \ .has_pln = true, \ .supports_simd16_3src = true, \ + .has_surface_tile_offset = true, \ .max_vs_threads = 504, \ .max_hs_threads = 504, \ .max_ds_threads = 504, \ @@ -329,6 +330,7 @@ static const struct brw_device_info brw_device_info_chv = { .has_llc = true, \ .has_pln = true, \ .supports_simd16_3src = true, \ + .has_surface_tile_offset = true, \ .max_vs_threads = 336, \ .max_gs_threads = 336, \ .max_hs_threads = 336, \ |