rsx: Take depth into account when calculating coverage

This commit is contained in:
kd-11 2022-01-22 14:00:45 +03:00 committed by kd-11
parent 7f216f2581
commit 4f8b5849b7
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ namespace rsx
if (external_subresource_desc.op != deferred_request_command::atlas_gather)
return true;
const int target_area = (external_subresource_desc.width * external_subresource_desc.height * threshold) / 100;
const int target_area = (external_subresource_desc.width * external_subresource_desc.height * external_subresource_desc.depth * threshold) / 100;
int covered_area = 0;
areai bbox{smax, smax, 0, 0};