diff --git a/src/imagination/common/device_info/bxs-4-64.h b/src/imagination/common/device_info/bxs-4-64.h index 45581a00fc7..61dfadc2b72 100644 --- a/src/imagination/common/device_info/bxs-4-64.h +++ b/src/imagination/common/device_info/bxs-4-64.h @@ -67,6 +67,7 @@ static const struct pvr_device_features pvr_device_features_36_V_104_796 = { .has_tile_size_x = true, .has_tile_size_y = true, .has_tpu_border_colour_enhanced = true, + .has_tpu_dm_global_registers = true, .has_tpu_extended_integer_lookup = true, .has_tpu_image_state_v2 = true, .has_usc_f16sop_u8 = true, diff --git a/src/imagination/common/pvr_device_info.h b/src/imagination/common/pvr_device_info.h index 1cb7264abdd..779923f7d20 100644 --- a/src/imagination/common/pvr_device_info.h +++ b/src/imagination/common/pvr_device_info.h @@ -289,6 +289,7 @@ struct pvr_device_features { bool has_tile_size_y : 1; bool has_tpu_array_textures : 1; bool has_tpu_border_colour_enhanced : 1; + bool has_tpu_dm_global_registers : 1; bool has_tpu_extended_integer_lookup : 1; bool has_tpu_image_state_v2 : 1; bool has_usc_f16sop_u8 : 1;