Home | History | Annotate | Download | only in opengl

Lines Matching refs:Profile

47 enum Profile
50 PROFILE_CORE, //!< OpenGL Core Profile
51 PROFILE_COMPATIBILITY, //!< OpenGL Compatibility Profile
68 * \brief Rendering API version and profile.
74 ApiType (int major, int minor, Profile profile) : m_bits(pack(major, minor, profile)) {}
78 Profile getProfile (void) const { return Profile((m_bits>>PROFILE_SHIFT) & ((1u<<PROFILE_BITS)-1u)); }
94 static deUint32 pack (int major, int minor, Profile profile);
111 inline deUint32 ApiType::pack (int major, int minor, Profile profile)
117 DE_ASSERT((deUint32(profile) & ~((1<<PROFILE_BITS)-1)) == 0);
121 bits |= deUint32(profile) << PROFILE_SHIFT;
142 ContextType (int major, int minor, Profile profile, ContextFlags flags = ContextFlags(0));
163 inline ContextType::ContextType (int major, int minor, Profile profile, ContextFlags flags)
164 : ApiType(major, minor, profile)