Lines Matching defs:Profile
51 enum Profile
54 PROFILE_CORE, //!< OpenGL Core Profile
55 PROFILE_COMPATIBILITY, //!< OpenGL Compatibility Profile
79 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {}
83 Profile getProfile (void) const { return Profile((m_bits>>PROFILE_SHIFT) & ((1u<<PROFILE_BITS)-1u)); }
99 static deUint32 pack (int major, int minor, Profile profile);
116 inline deUint32 ApiType::pack (int major, int minor, Profile profile)
147 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
170 inline ContextType::ContextType (int major, int minor, Profile profile, ContextFlags flags)