mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-23 18:10:36 +02:00
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 <kenneth@whitecape.org>
This commit is contained in:
parent
0fe732e66f
commit
74e4baec59
1 changed files with 2 additions and 0 deletions
|
|
@ -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, \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue