diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-06-06 22:03:49 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-06-06 23:23:43 +0200 |
commit | 59c2e2a061736a981819c3cb217e92e1509d9852 (patch) | |
tree | 2099c472936631cf858a9d77dab7ca63e56f46a7 | |
parent | d607b83b79e6a6e9ce4011d39435df3f87f58706 (diff) |
radv: Remove SI num RB override for occlusion queries.
radeonsi doesn't have it anymore either.
Signed-off-by: Bas Nieuwenhuizen <[email protected]>
Fixes: f4e499ec791 "radv: add initial non-conformant radv vulkan driver"
Reviewed-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_query.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_query.c b/src/amd/vulkan/radv_query.c index 6d05612579f..03b5af16a55 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -44,9 +44,6 @@ static unsigned get_max_db(struct radv_device *device) unsigned num_db = device->physical_device->rad_info.num_render_backends; MAYBE_UNUSED unsigned rb_mask = device->physical_device->rad_info.enabled_rb_mask; - if (device->physical_device->rad_info.chip_class == SI) - num_db = 8; - /* Otherwise we need to change the query reset procedure */ assert(rb_mask == ((1ull << num_db) - 1)); |