#pragma once #include #include "util_bit.h" namespace dxvk { template class Flags { public: using IntType = std::underlying_type_t; Flags() { } Flags(IntType t) : m_bits(t) { } template Flags(T f, Tx... fx) { this->set(f, fx...); } template void set(Tx... fx) { m_bits |= bits(fx...); } void set(Flags flags) { m_bits |= flags.m_bits; } template void clr(Tx... fx) { m_bits &= ~bits(fx...); } void clr(Flags flags) { m_bits &= ~flags.m_bits; } template bool any(Tx... fx) const { return (m_bits & bits(fx...)) != 0; } template bool all(Tx... fx) const { const IntType mask = bits(fx...); return (m_bits & mask) == mask; } bool test(T f) const { return this->any(f); } bool isClear() const { return m_bits == 0; } void clrAll() { m_bits = 0; } uint32_t raw() const { return m_bits; } private: IntType m_bits = 0; static IntType bit(T f) { return IntType(1) << static_cast(f); } template static IntType bits(T f, Tx... fx) { return bit(f) | bits(fx...); } static IntType bits() { return 0; } }; }