Compare commits

...

1 Commits

Author SHA1 Message Date
87a86c90cd rasterizer_cache: Bring back custom format parameter 2023-08-07 17:49:23 +03:00

View File

@ -228,10 +228,10 @@ std::string SurfaceParams::DebugName(bool scaled, bool custom) const noexcept {
} }
bool SurfaceParams::operator==(const SurfaceParams& other) const noexcept { bool SurfaceParams::operator==(const SurfaceParams& other) const noexcept {
return std::tie(addr, end, width, height, stride, levels, is_tiled, texture_type, return std::tie(addr, end, width, height, stride, levels, is_tiled, texture_type, pixel_format,
pixel_format) == std::tie(other.addr, other.end, other.width, other.height, custom_format) ==
other.stride, other.levels, other.is_tiled, std::tie(other.addr, other.end, other.width, other.height, other.stride, other.levels,
other.texture_type, other.pixel_format); other.is_tiled, other.texture_type, other.pixel_format, other.custom_format);
} }
} // namespace VideoCore } // namespace VideoCore