Lines Matching defs:profile
209 glu::Profile profile = api == EGL_OPENGL_ES_API ? glu::PROFILE_ES : glu::PROFILE_CORE;
247 profile = glu::PROFILE_COMPATIBILITY;
249 throw tcu::InternalError("Indeterminate OpenGL profile");
271 return glu::ContextType(majorVersion, minorVersion, profile, flags);
571 deInt32 profile = 0;
573 gl.getIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
576 if (profile == GL_CONTEXT_COMPATIBILITY_PROFILE_BIT)
580 log << TestLog::Message << "Required OpenGL 3.0 or earlier. Got later version without compatibility profile." << TestLog::EndMessage;
593 deInt32 profile = 0;
595 gl.getIntegerv(GL_CONTEXT_PROFILE_MASK, &profile);
598 if (profile == GL_CONTEXT_CORE_PROFILE_BIT)
602 log << TestLog::Message << "Required OpenGL 3.1. Got later version without core profile." << TestLog::EndMessage;
791 // \note Ignore profile masks. This is not an error