mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 15:00:02 +00:00
Merge pull request #3355 from ReinUsesLisp/break-down
texture_cache/surface_base: Fix layered break down
This commit is contained in:
commit
b11aeced18
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ std::vector<CopyParams> SurfaceBaseImpl::BreakDownLayered(const SurfaceParams& i
|
||||||
for (u32 level = 0; level < mipmaps; level++) {
|
for (u32 level = 0; level < mipmaps; level++) {
|
||||||
const u32 width = SurfaceParams::IntersectWidth(params, in_params, level, level);
|
const u32 width = SurfaceParams::IntersectWidth(params, in_params, level, level);
|
||||||
const u32 height = SurfaceParams::IntersectHeight(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;
|
return result;
|
||||||
|
|
Loading…
Reference in a new issue