diff options
| author | 2021-10-17 02:21:26 +0200 | |
|---|---|---|
| committer | 2021-11-16 22:11:31 +0100 | |
| commit | d4f5193bd308988a80f52941d9eefc4c857bfa99 (patch) | |
| tree | 09f3c34e22ef0255a43ef64ba2270e5b38c28916 /src/video_core/texture_cache | |
| parent | Texture cache: Fix memory consumption and ignore rating when a depth texture ... (diff) | |
| download | yuzu-d4f5193bd308988a80f52941d9eefc4c857bfa99.tar.gz yuzu-d4f5193bd308988a80f52941d9eefc4c857bfa99.tar.xz yuzu-d4f5193bd308988a80f52941d9eefc4c857bfa99.zip | |
Texture Cache: Rescale conversions between depth and color
Diffstat (limited to 'src/video_core/texture_cache')
| -rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index c06cddae9..a035d2b18 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h | |||
| @@ -1774,7 +1774,7 @@ void TextureCache<P>::CopyImage(ImageId dst_id, ImageId src_id, std::vector<Imag | |||
| 1774 | }; | 1774 | }; |
| 1775 | UNIMPLEMENTED_IF(copy.extent != expected_size); | 1775 | UNIMPLEMENTED_IF(copy.extent != expected_size); |
| 1776 | 1776 | ||
| 1777 | runtime.ConvertImage(dst_framebuffer, dst_view, src_view); | 1777 | runtime.ConvertImage(dst_framebuffer, dst_view, src_view, is_rescaled); |
| 1778 | } | 1778 | } |
| 1779 | } | 1779 | } |
| 1780 | 1780 | ||