/external/mesa3d/src/gallium/state_trackers/wgl/ |
D | stw_ext_context.c | 64 int profileMask = WGL_CONTEXT_CORE_PROFILE_BIT_ARB; in wglCreateContextAttribsARB() local 87 profileMask = attribList[++i]; in wglCreateContextAttribsARB() 108 if (profileMask != WGL_CONTEXT_CORE_PROFILE_BIT_ARB && in wglCreateContextAttribsARB() 109 profileMask != WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB && in wglCreateContextAttribsARB() 110 profileMask != WGL_CONTEXT_ES_PROFILE_BIT_EXT) { in wglCreateContextAttribsARB() 118 (profileMask != WGL_CONTEXT_ES_PROFILE_BIT_EXT && in wglCreateContextAttribsARB() 124 (profileMask == WGL_CONTEXT_ES_PROFILE_BIT_EXT && in wglCreateContextAttribsARB() 188 contextFlags, profileMask, in wglCreateContextAttribsARB()
|
D | stw_context.h | 54 int contextFlags, int profileMask,
|
D | stw_context.c | 164 int contextFlags, int profileMask, in stw_create_context_attribs() argument 228 switch (profileMask) { in stw_create_context_attribs()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | Versions.cpp | 496 void TParseVersions::requireProfile(const TSourceLoc& loc, int profileMask, const char* featureDesc) in requireProfile() argument 498 if (! (profile & profileMask)) in requireProfile() 545 void TParseVersions::profileRequires(const TSourceLoc& loc, int profileMask, int minVersion, int nu… in profileRequires() argument 547 if (profile & profileMask) { in profileRequires() 570 void TParseVersions::profileRequires(const TSourceLoc& loc, int profileMask, int minVersion, const … in profileRequires() argument 572 profileRequires(loc, profileMask, minVersion, extension ? 1 : 0, &extension, featureDesc); in profileRequires() 599 void TParseVersions::checkDeprecated(const TSourceLoc& loc, int profileMask, int depVersion, const … in checkDeprecated() argument 601 if (profile & profileMask) { in checkDeprecated() 616 void TParseVersions::requireNotRemoved(const TSourceLoc& loc, int profileMask, int removedVersion, … in requireNotRemoved() argument 618 if (profile & profileMask) { in requireNotRemoved()
|
/external/deqp/modules/egl/ |
D | teglCreateContextExtTests.cpp | 665 EGLint profileMask = -1; in validateCurrentContext() local 694 profileMask = (*iter); in validateCurrentContext() 778 if (profileMask != -1 || (m_api == EGL_OPENGL_API && (majorVersion >= 3))) in validateCurrentContext() 780 if (profileMask == -1) in validateCurrentContext() 781 profileMask = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR; in validateCurrentContext() 796 if (profileMask != profileMaskGL) in validateCurrentContext() 798 …Invalid GL_CONTEXT_PROFILE_MASK. Expected '" << eglProfileMaskToString(profileMask) << "' got '" <… in validateCurrentContext()
|
/external/deqp/framework/platform/lnx/X11/ |
D | tcuLnxX11GlxPlatform.cpp | 325 int profileMask = 0; in createContext() local 331 profileMask = GLX_CONTEXT_ES2_PROFILE_BIT_EXT; in createContext() 334 profileMask = GLX_CONTEXT_CORE_PROFILE_BIT_ARB; in createContext() 337 profileMask = GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB; in createContext() 348 attribs.push_back(profileMask); in createContext()
|
/external/mesa3d/src/gallium/state_trackers/glx/xlib/ |
D | glx_api.c | 1118 unsigned profileMask, unsigned contextFlags) in create_context() argument 1135 profileMask, contextFlags); in create_context() 2747 int profileMask = GLX_CONTEXT_CORE_PROFILE_BIT_ARB; in glXCreateContextAttribsARB() local 2768 profileMask = attrib_list[++i]; in glXCreateContextAttribsARB() 2791 if (profileMask != GLX_CONTEXT_CORE_PROFILE_BIT_ARB && in glXCreateContextAttribsARB() 2792 profileMask != GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB && in glXCreateContextAttribsARB() 2793 profileMask != GLX_CONTEXT_ES_PROFILE_BIT_EXT) { in glXCreateContextAttribsARB() 2808 (profileMask != GLX_CONTEXT_ES_PROFILE_BIT_EXT && in glXCreateContextAttribsARB() 2817 if (profileMask == GLX_CONTEXT_ES_PROFILE_BIT_EXT && in glXCreateContextAttribsARB() 2845 profileMask, contextFlags); in glXCreateContextAttribsARB()
|
D | xm_api.h | 147 GLuint profileMask,
|
D | xm_api.c | 955 GLuint profileMask, GLuint contextFlags) in XMesaCreateContext() argument 985 switch (profileMask) { in XMesaCreateContext()
|
/external/skia/tools/gpu/atlastext/ |
D | GLTestAtlasTextRenderer.cpp | 96 GrGLint profileMask; in GLTestAtlasTextRenderer() local 97 callgl(GetIntegerv, GR_GL_CONTEXT_PROFILE_MASK, &profileMask); in GLTestAtlasTextRenderer() 98 if (profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT) { in GLTestAtlasTextRenderer()
|
/external/skqp/tools/gpu/atlastext/ |
D | GLTestAtlasTextRenderer.cpp | 96 GrGLint profileMask; in GLTestAtlasTextRenderer() local 97 callgl(GetIntegerv, GR_GL_CONTEXT_PROFILE_MASK, &profileMask); in GLTestAtlasTextRenderer() 98 if (profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT) { in GLTestAtlasTextRenderer()
|
/external/skqp/src/gpu/gl/ |
D | GrGLCaps.cpp | 96 GrGLint profileMask; in init() local 97 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask); in init() 98 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT); in init()
|
/external/skia/src/gpu/gl/ |
D | GrGLCaps.cpp | 96 GrGLint profileMask; in init() local 97 GR_GL_GetIntegerv(gli, GR_GL_CONTEXT_PROFILE_MASK, &profileMask); in init() 98 fIsCoreProfile = SkToBool(profileMask & GR_GL_CONTEXT_CORE_PROFILE_BIT); in init()
|