Home | History | Annotate | Download | only in opengl

Lines Matching refs: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); }
140 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
141 explicit ContextType (ApiType apiType, ContextFlags flags = ContextFlags(0));
144 ContextFlags getFlags (void) const { return ContextFlags((m_bits>>FLAGS_SHIFT) & ((1u<<FLAGS_BITS)-1u)); }
151 static deUint32 pack (deUint32 apiBits, ContextFlags flags);
161 inline ContextType::ContextType (int major, int minor, Profile profile, ContextFlags flags)
167 inline ContextType::ContextType (ApiType apiType, ContextFlags flags)
173 inline deUint32 ContextType::pack (deUint32 apiBits, ContextFlags flags)