diff options
author | Nicolai Hähnle <[email protected]> | 2017-05-16 17:05:02 +0200 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-06-05 10:43:47 +1000 |
commit | 388d36dfd180bc16b9d2803d9a213aa5e5ee011f (patch) | |
tree | d02a4e8ee663ce38266fd7db4de043c521f86603 | |
parent | e07d5c7296e9217fff7637e8ac3a9134f60c9522 (diff) |
radv: fewer than 8 RBs are possible
This fixes the subsequent assertion on Bonaire.
Reviewed-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_query.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_query.c b/src/amd/vulkan/radv_query.c index 55e4185772e..6d05612579f 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -46,8 +46,6 @@ static unsigned get_max_db(struct radv_device *device) if (device->physical_device->rad_info.chip_class == SI) num_db = 8; - else - num_db = MAX2(8, num_db); /* Otherwise we need to change the query reset procedure */ assert(rb_mask == ((1ull << num_db) - 1)); |