Merge pull request #3355 from ReinUsesLisp/break-down

texture_cache/surface_base: Fix layered break down
This commit is contained in:
bunnei 2020-01-29 12:29:56 -05:00 committed by GitHub
commit b11aeced18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -135,7 +135,7 @@ std::vector<CopyParams> SurfaceBaseImpl::BreakDownLayered(const SurfaceParams& i
for (u32 level = 0; level < mipmaps; level++) {
const u32 width = SurfaceParams::IntersectWidth(params, in_params, level, level);
const u32 height = SurfaceParams::IntersectHeight(params, in_params, level, level);
result.emplace_back(width, height, layer, level);
result.emplace_back(0, 0, layer, 0, 0, layer, level, level, width, height, 1);
}
}
return result;