Home
last modified time | relevance | path

Searched refs:contextType (Results 1 – 19 of 19) sorted by relevance

/external/deqp/framework/egl/
DegluGLUtil.cpp79 …(const Library& egl, EGLDisplay display, EGLContext eglConfig, const glu::ContextType& contextType) in createGLContext() argument
86 if (glu::isContextTypeES(contextType)) in createGLContext()
90 if (contextType.getMajorVersion() <= 2) in createGLContext()
93 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
101 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
103 attribList.push_back(contextType.getMinorVersion()); in createGLContext()
108 …DE_ASSERT(glu::isContextTypeGLCore(contextType) || glu::isContextTypeGLCompatibility(contextType)); in createGLContext()
116 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
118 attribList.push_back(contextType.getMinorVersion()); in createGLContext()
120 …attribList.push_back(glu::isContextTypeGLCore(contextType) ? EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_K… in createGLContext()
[all …]
DegluGLUtil.hpp42 …brary& egl, eglw::EGLDisplay display, eglw::EGLConfig config, const glu::ContextType& contextType);
/external/deqp/framework/opengl/
DgluStrUtil.cpp145 std::ostream& operator<< (std::ostream& str, ContextType contextType) in operator <<() argument
147 str << contextType.getAPI(); in operator <<()
149 if (contextType.getFlags() != ContextFlags(0)) in operator <<()
161 ContextFlags flags = contextType.getFlags(); in operator <<()
169 if (flags != contextType.getFlags()) in operator <<()
180 if (flags != contextType.getFlags()) in operator <<()
DgluStrUtil.hpp95 std::ostream& operator<< (std::ostream& str, ContextType contextType);
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/
DJmeDesktopSystem.java193 public JmeContext newContext(AppSettings settings, Type contextType) { in newContext() argument
198 || contextType == JmeContext.Type.Headless) { in newContext()
202 ctx = newContextLwjgl(settings, contextType); in newContext()
205 ctx = newContextJogl(settings, contextType); in newContext()
208 ctx = newContextCustom(settings, contextType); in newContext()
/external/skia/src/utils/win/
DSkWGL_win.cpp328 static HGLRC create_gl_context(HDC dc, SkWGLExtensions extensions, SkWGLContextRequest contextType)… in create_gl_context() argument
333 if (kGLES_SkWGLContextRequest == contextType) { in create_gl_context()
350 if (kGLPreferCoreProfile_SkWGLContextRequest == contextType && in create_gl_context()
391 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, SkWGLContextRequest contextType) { in SkCreateWGLContext() argument
413 return create_gl_context(dc, extensions, contextType);} in SkCreateWGLContext()
416 SkWGLContextRequest contextType) { in Create() argument
433 HGLRC glrc = create_gl_context(dc, extensions, contextType); in Create()
DSkWGL.h152 SkWGLContextRequest contextType);
/external/skia/src/gpu/gl/win/
DSkCreatePlatformGLContext_win.cpp83 SkWGLContextRequest contextType = in WinGLContext() local
87 fPbufferContext = SkWGLPbufferContext::Create(fDeviceContext, 0, contextType); in WinGLContext()
93 if (!(fGlRenderContext = SkCreateWGLContext(fDeviceContext, 0, contextType))) { in WinGLContext()
/external/jmonkeyengine/engine/src/test/jme3test/app/state/
DTestAppStates.java49 public void start(JmeContext.Type contextType){ in start() argument
54 super.start(contextType); in start()
/external/deqp/modules/glshared/
DglsTextureStateQueryTests.cpp445 static bool isCoreTextureTarget (const glu::ContextType& contextType, glw::GLenum target) in isCoreTextureTarget() argument
447 if (contextSupports(contextType, glu::ApiType::es(3,1))) in isCoreTextureTarget()
449 else if (contextSupports(contextType, glu::ApiType::es(3,0))) in isCoreTextureTarget()
458 static bool isCoreTextureParam (const glu::ContextType& contextType, glw::GLenum pname) in isCoreTextureParam() argument
460 if (contextSupports(contextType, glu::ApiType::es(3,1))) in isCoreTextureParam()
462 else if (contextSupports(contextType, glu::ApiType::es(3,0))) in isCoreTextureParam()
471 static bool isCoreQuery (const glu::ContextType& contextType, QueryType query) in isCoreQuery() argument
473 if (contextSupports(contextType, glu::ApiType::es(3,1))) in isCoreQuery()
475 else if (contextSupports(contextType, glu::ApiType::es(3,0))) in isCoreQuery()
484 static bool isCoreTester (const glu::ContextType& contextType, TesterType tester) in isCoreTester() argument
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/system/
DJmeSystem.java116 public static JmeContext newContext(AppSettings settings, JmeContext.Type contextType) { in newContext() argument
118 return systemDelegate.newContext(settings, contextType); in newContext()
DJmeSystemDelegate.java144 public abstract JmeContext newContext(AppSettings settings, JmeContext.Type contextType); in newContext() argument
/external/jmonkeyengine/engine/src/core/com/jme3/app/
DApplication.java376 public void start(JmeContext.Type contextType){ in start() argument
387 context = JmeSystem.newContext(settings, contextType); in start()
/external/deqp/framework/platform/X11/
DtcuX11GlxPlatform.cpp115 const ContextType& contextType);
298 const ContextType& contextType) in createContext() argument
301 const ApiType apiType = contextType.getAPI(); in createContext()
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
DJmeAndroidSystem.java45 public JmeContext newContext(AppSettings settings, Type contextType) { in newContext() argument
/external/guava/guava/src/com/google/common/reflect/
DTypeResolver.java319 Type contextType) { in getTypeMappings() argument
321 introspector.visit(wildcardCapturer.capture(contextType)); in getTypeMappings()
/external/deqp/modules/egl/
DteglImageTests.cpp351 const ContextType contextType (ApiType::es(2, 0)); in iterate() local
352 Context context (m_eglTestCtx, dpy, contextType, 64, 64); in iterate()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.hpp558 : contextType (glu::ApiType::es(3,0)) in ReferenceContextLimits()
573 glu::ContextType contextType; member
DsglrReferenceContext.cpp239 : contextType (renderCtx.getType()) in ReferenceContextLimits()
256 if (contextSupports(contextType, glu::ApiType::es(3,0)) || glu::isContextTypeGLCore(contextType)) in ReferenceContextLimits()
277 if (contextSupports(contextType, glu::ApiType::es(3,1))) in ReferenceContextLimits()
313 : Context (limits.contextType) in ReferenceContext()
604 …RC_IF_ERROR(glu::isContextTypeES(m_limits.contextType) && (target == GL_TEXTURE_1D), GL_INVALID_EN… in bindTexture()
1042 if (target == GL_TEXTURE_1D && glu::isContextTypeGLCore(m_limits.contextType)) in texImage3D()
1300 if (target == GL_TEXTURE_1D && glu::isContextTypeGLCore(m_limits.contextType)) in texSubImage3D()