mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
VideoCommon: add texture type to texture config comparison
This commit is contained in:
parent
6c5ceaa06d
commit
fa5a6547c6
1 changed files with 2 additions and 2 deletions
|
@ -9,8 +9,8 @@
|
||||||
|
|
||||||
bool TextureConfig::operator==(const TextureConfig& o) const
|
bool TextureConfig::operator==(const TextureConfig& o) const
|
||||||
{
|
{
|
||||||
return std::tie(width, height, levels, layers, samples, format, 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);
|
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
|
bool TextureConfig::operator!=(const TextureConfig& o) const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue