HomeSort by relevance Sort by last modified time
    Searched refs:ctxType (Results 1 - 24 of 24) sorted by null

  /external/skia/tests/
GrContextFactoryTest.cpp 24 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::ContextType>(i);
25 GrContext* context = testFactory.get(ctxType,
41 GrContextFactory::ContextType ctxType = (GrContextFactory::ContextType)i;
43 testFactory.get(ctxType, GrContextFactory::ContextOverrides::kDisableNVPR);
59 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::ContextType>(i);
61 testFactory.get(ctxType, GrContextFactory::ContextOverrides::kRequireSRGBSupport);
66 context = testFactory.get(ctxType);
77 GrContextFactory::ContextType ctxType = (GrContextFactory::ContextType) i;
78 ContextInfo info1 = testFactory.getContextInfo(ctxType);
88 ContextInfo info2 = testFactory.getContextInfo(ctxType);
    [all...]
GrContextAbandonTest.cpp 21 GrContextFactory::ContextType ctxType = (GrContextFactory::ContextType) i;
22 ContextInfo info = testFactory.getContextInfo(ctxType);
ImageTest.cpp 816 GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::ContextType>(i);
817 ContextInfo ctxInfo = testFactory.getContextInfo(ctxType);
    [all...]
  /external/deqp/framework/opengl/
gluRenderContext.cpp 47 bool contextSupports (ContextType ctxType, ApiType requiredApiType)
50 const bool forwardCompatible = (ctxType.getFlags() & CONTEXT_FORWARD_COMPATIBLE) != 0;
52 if (isContextTypeES(ctxType))
56 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
58 else if (isContextTypeGLCore(ctxType))
61 return ctxType.getAPI() == requiredApiType;
64 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
66 else if (isContextTypeGLCompatibility(ctxType))
70 versionGreaterOrEqual(ctxType.getAPI(), requiredApiType);
gluDrawUtil.cpp 592 const glu::ContextType ctxType = context.getType();
594 if (isContextTypeGLCore(ctxType) || contextSupports(ctxType, ApiType::es(3,1)))
598 DE_ASSERT(isContextTypeES(ctxType));
gluRenderContext.hpp 188 bool contextSupports (ContextType ctxType, ApiType requiredApiType);
  /external/deqp/framework/opengl/simplereference/
sglrContextUtil.cpp 33 const glu::ContextType ctxType = ctx.getType();
35 if (glu::isContextTypeGLCore(ctxType) || (contextSupports(ctxType, glu::ApiType::es(3,1))))
39 DE_ASSERT(isContextTypeES(ctxType));
sglrReferenceUtils.hpp 39 rr::VertexAttribType mapGLFloatVertexAttributeType (deUint32 type, bool normalizedInteger, int size, glu::ContextType ctxType);
sglrReferenceUtils.cpp 48 rr::VertexAttribType mapGLFloatVertexAttributeType (deUint32 type, bool normalizedInteger, int size, glu::ContextType ctxType)
50 const bool useClampingNormalization = (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() >= 3) ||
51 (ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() >= 2);
  /external/skia/bench/
nanobench.h 32 sk_gpu_test::GrContextFactory::ContextType ctxType;
nanobench.cpp 200 this->surface = SkSurface::MakeRenderTarget(gGrFactory->get(this->config.ctxType,
204 this->context = gGrFactory->getContextInfo(this->config.ctxType,
417 const auto ctxType = gpuConfig->getContextType();
423 if (const GrContext* ctx = gGrFactory->get(ctxType, ctxOverrides)) {
444 ctxType,
    [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContext.cpp 87 const ContextType ctxType;
120 : ctxType (ctxType_)
132 if (ctxType.getAPI() == ApiType::es(2, 0))
137 else if (ctxType.getAPI() == ApiType::es(3, 0))
142 else if (ctxType.getAPI() == ApiType::es(3, 1))
171 else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 3)
176 else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() <= 4
    [all...]
  /external/deqp/framework/platform/win32/
tcuWGL.cpp 353 Context::Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat)
364 switch (ctxType.getProfile())
382 if ((ctxType.getFlags() & glu::CONTEXT_FORWARD_COMPATIBLE) != 0)
385 if ((ctxType.getFlags() & glu::CONTEXT_DEBUG) != 0)
388 if ((ctxType.getFlags() & glu::CONTEXT_ROBUST) != 0)
393 WGL_CONTEXT_MAJOR_VERSION_ARB, ctxType.getMajorVersion(),
394 WGL_CONTEXT_MINOR_VERSION_ARB, ctxType.getMinorVersion(),
tcuWGL.hpp 190 Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat);
  /external/deqp/modules/glshared/
glsMemoryStressCase.cpp 184 const glu::ContextType ctxType = renderContext.getType();
186 if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_300_ES))
188 else if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_100_ES))
190 else if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_330))
195 if (ctxType.getProfile() == glu::PROFILE_CORE)
346 const glu::ContextType ctxType = renderContext.getType();
348 if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_300_ES))
350 else if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_100_ES))
352 else if (glu::isGLSLVersionSupported(ctxType, glu::GLSL_VERSION_330))
357 if (ctxType.getProfile() == glu::PROFILE_CORE
    [all...]
glsBufferTestUtil.cpp 424 const glu::ContextType ctxType = renderCtx.getType();
425 const glu::GLSLVersion glslVersion = glu::isContextTypeES(ctxType) ? glu::GLSL_VERSION_300_ES : glu::GLSL_VERSION_330;
427 DE_ASSERT(glu::isGLSLVersionSupported(ctxType, glslVersion));
662 const glu::ContextType ctxType = renderCtx.getType();
663 const glu::GLSLVersion glslVersion = glu::isContextTypeES(ctxType) ? glu::GLSL_VERSION_300_ES : glu::GLSL_VERSION_330;
665 DE_ASSERT(glu::isGLSLVersionSupported(ctxType, glslVersion));
glsDrawTest.cpp     [all...]
  /external/deqp/modules/egl/
teglImageTests.cpp 247 Context (EglTestContext& eglTestCtx, EGLDisplay display, ContextType ctxType, int width, int height)
250 , m_config (chooseConfig(eglTestCtx.getLibrary(), display, ctxType.getAPI()))
251 , m_context (m_eglTestCtx.getLibrary(), m_display, eglu::createGLContext(eglTestCtx.getLibrary(), m_display, m_config, ctxType))
255 m_eglTestCtx.initGLFunctions(&m_gl, ctxType.getAPI());
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4/4.5/
antlr4-4.5.jar 
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/
antlr4-runtime-4.5.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /external/libxml2/
xmlschemas.c     [all...]
  /prebuilts/checkstyle/
checkstyle.jar 

Completed in 2840 milliseconds