diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-11-22 06:07:21 +0100 | 
|---|---|---|
| committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-11-22 06:07:21 +0100 | 
| commit | 08674aee87e385e5f2a3b8e1b9aa85a61e23a490 (patch) | |
| tree | 0ccca5c1a37a83096935266d93ff0b15da6daefa /src/video_core | |
| parent | 1e474fb9d1c5e35c2bb8822d58556ef3358e66e9 (diff) | |
Texture Cache: Fix issue with blitting 3D textures.
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/texture_cache/util.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/util.cpp b/src/video_core/texture_cache/util.cpp index 777503488..9b1613008 100644 --- a/src/video_core/texture_cache/util.cpp +++ b/src/video_core/texture_cache/util.cpp @@ -1155,11 +1155,13 @@ void DeduceBlitImages(ImageInfo& dst_info, ImageInfo& src_info, const ImageBase*      if (src) {          is_resolve = src->info.num_samples > 1;          src_info.num_samples = src->info.num_samples; -        src_info.size = src->info.size; +        src_info.size.width = src->info.size.width; +        src_info.size.height = src->info.size.height;      }      if (dst) {          dst_info.num_samples = dst->info.num_samples; -        dst_info.size = dst->info.size; +        dst_info.size.width = dst->info.size.width; +        dst_info.size.height = dst->info.size.height;      }      ASSERT(!is_resolve || dst_info.format == src_info.format);  }  | 
