mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
Merge pull request #12845 from iwubcode/texture_config_compare_type
VideoCommon: add texture type to texture config comparison
This commit is contained in:
commit
4930567981
@ -9,8 +9,8 @@
|
||||
|
||||
bool TextureConfig::operator==(const TextureConfig& o) const
|
||||
{
|
||||
return std::tie(width, height, levels, layers, samples, format, flags) ==
|
||||
std::tie(o.width, o.height, o.levels, o.layers, o.samples, o.format, o.flags);
|
||||
return std::tie(width, height, levels, layers, samples, format, flags, type) ==
|
||||
std::tie(o.width, o.height, o.levels, o.layers, o.samples, o.format, o.flags, o.type);
|
||||
}
|
||||
|
||||
bool TextureConfig::operator!=(const TextureConfig& o) const
|
||||
|
Loading…
x
Reference in New Issue
Block a user