Lines Matching full:contextflags
56 enum ContextFlags
63 inline ContextFlags operator| (ContextFlags a, ContextFlags b) { return ContextFlags((deUint32)a|(deUint32)b); }
64 inline ContextFlags operator& (ContextFlags a, ContextFlags b) { return ContextFlags((deUint32)a&(deUint32)b); }
65 inline ContextFlags operator~ (ContextFlags a) { return ContextFlags(~(deUint32)a); }
142 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
143 explicit ContextType (ApiType apiType, ContextFlags flags = ContextFlags(0));
146 ContextFlags getFlags (void) const { return ContextFlags((m_bits>>FLAGS_SHIFT) & ((1u<<FLAGS_BITS)-1u)); }
153 static deUint32 pack (deUint32 apiBits, ContextFlags flags);
163 inline ContextType::ContextType (int major, int minor, Profile profile, ContextFlags flags)
169 inline ContextType::ContextType (ApiType apiType, ContextFlags flags)
175 inline deUint32 ContextType::pack (deUint32 apiBits, ContextFlags flags)