diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-28 08:55:02 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-06-28 15:21:42 +0200 |
commit | d3d6613d33d6ca695732ccbdbd3e749053d22d0a (patch) | |
tree | f60dfab785157d35dd4110f7cf42b52c7180fee0 /src/video_core/texture_cache | |
parent | Merge pull request #6535 from ameerj/insert-fancy-name (diff) | |
download | yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.gz yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.bz2 yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.lz yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.xz yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.tar.zst yuzu-d3d6613d33d6ca695732ccbdbd3e749053d22d0a.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/image_base.cpp | 2 | ||||
-rw-r--r-- | src/video_core/texture_cache/util.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/texture_cache/image_base.cpp b/src/video_core/texture_cache/image_base.cpp index ad69d32d1..f22358c90 100644 --- a/src/video_core/texture_cache/image_base.cpp +++ b/src/video_core/texture_cache/image_base.cpp @@ -82,7 +82,7 @@ std::optional<SubresourceBase> ImageBase::TryFindBase(GPUVAddr other_addr) const if (info.type != ImageType::e3D) { const auto [layer, mip_offset] = LayerMipOffset(diff, info.layer_stride); const auto end = mip_level_offsets.begin() + info.resources.levels; - const auto it = std::find(mip_level_offsets.begin(), end, mip_offset); + const auto it = std::find(mip_level_offsets.begin(), end, static_cast<u32>(mip_offset)); if (layer > info.resources.layers || it == end) { return std::nullopt; } diff --git a/src/video_core/texture_cache/util.cpp b/src/video_core/texture_cache/util.cpp index 4efe042b6..20794fa32 100644 --- a/src/video_core/texture_cache/util.cpp +++ b/src/video_core/texture_cache/util.cpp @@ -394,7 +394,7 @@ template <u32 GOB_EXTENT> const s32 mip_offset = diff % layer_stride; const std::array offsets = CalculateMipLevelOffsets(new_info); const auto end = offsets.begin() + new_info.resources.levels; - const auto it = std::find(offsets.begin(), end, mip_offset); + const auto it = std::find(offsets.begin(), end, static_cast<u32>(mip_offset)); if (it == end) { // Mipmap is not aligned to any valid size return std::nullopt; |