diff --git a/src/util/util_flags.h b/src/util/util_flags.h index b73a0558..1d98522a 100644 --- a/src/util/util_flags.h +++ b/src/util/util_flags.h @@ -79,6 +79,14 @@ namespace dxvk { Flags operator ^ (const Flags& other) const { return Flags(m_bits ^ other.m_bits); } + + bool operator == (const Flags& other) const { + return m_bits == other.m_bits; + } + + bool operator != (const Flags& other) const { + return m_bits != other.m_bits; + } private: