mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 07:20:00 +00:00
Correct Fermi Copy on Linear Textures.
This commit is contained in:
parent
b81260c65c
commit
cd91e98dab
1 changed files with 4 additions and 0 deletions
|
@ -265,6 +265,10 @@ std::size_t SurfaceParams::InnerMemorySize(bool force_gl, bool layer_only,
|
||||||
params.component_type = ComponentTypeFromRenderTarget(config.format);
|
params.component_type = ComponentTypeFromRenderTarget(config.format);
|
||||||
params.type = GetFormatType(params.pixel_format);
|
params.type = GetFormatType(params.pixel_format);
|
||||||
params.width = config.width;
|
params.width = config.width;
|
||||||
|
if (!params.is_tiled) {
|
||||||
|
const u32 bpp = params.GetFormatBpp() / 8;
|
||||||
|
params.pitch = config.width * bpp;
|
||||||
|
}
|
||||||
params.height = config.height;
|
params.height = config.height;
|
||||||
params.unaligned_height = config.height;
|
params.unaligned_height = config.height;
|
||||||
params.target = SurfaceTarget::Texture2D;
|
params.target = SurfaceTarget::Texture2D;
|
||||||
|
|
Loading…
Reference in a new issue