Searched refs:contextType (Results 1 - 25 of 35) sorted by relevance

12

/external/deqp/framework/egl/
H A DegluGLUtil.cpp79 EGLContext createGLContext (const Library& egl, EGLDisplay display, EGLContext eglConfig, const glu::ContextType& contextType) argument
86 if (glu::isContextTypeES(contextType))
90 if (contextType.getMajorVersion() <= 2)
93 attribList.push_back(contextType.getMajorVersion());
101 attribList.push_back(contextType.getMajorVersion());
103 attribList.push_back(contextType.getMinorVersion());
108 DE_ASSERT(glu::isContextTypeGLCore(contextType) || glu::isContextTypeGLCompatibility(contextType));
116 attribList.push_back(contextType.getMajorVersion());
118 attribList.push_back(contextType
[all...]
H A DegluGLUtil.hpp42 eglw::EGLContext createGLContext (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, const glu::ContextType& contextType);
/external/skia/tests/
H A DSurfaceSemaphoreTest.cpp146 sk_gpu_test::GrContextFactory::ContextType contextType = local
150 if (contextType == sk_gpu_test::GrContextFactory::kGL_ContextType ||
151 contextType == sk_gpu_test::GrContextFactory::kGLES_ContextType) {
152 if (contextType != kNativeGLType) {
157 contextType, sk_gpu_test::GrContextFactory::ContextOverrides::kDisableNVPR);
158 if (!sk_gpu_test::GrContextFactory::IsRenderingContext(contextType)) {
162 reporter, SkString(sk_gpu_test::GrContextFactory::ContextTypeName(contextType)));
/external/deqp/framework/opengl/
H A DgluStrUtil.cpp145 std::ostream& operator<< (std::ostream& str, ContextType contextType) argument
147 str << contextType.getAPI();
149 if (contextType.getFlags() != ContextFlags(0))
161 ContextFlags flags = contextType.getFlags();
169 if (flags != contextType.getFlags())
180 if (flags != contextType.getFlags())
H A DgluStrUtil.hpp95 std::ostream& operator<< (std::ostream& str, ContextType contextType);
/external/deqp/modules/egl/
H A DteglThreadCleanUpTests.cpp149 static std::string testCaseName (ContextType contextType, SurfaceType surfaceType) argument
153 if (contextType == CONTEXTTYPE_SINGLE)
167 ThreadCleanUpTest (EglTestContext& eglTestCtx, ContextType contextType, SurfaceType surfaceType) argument
168 : TestCase (eglTestCtx, testCaseName(contextType, surfaceType).c_str(), "Simple thread context clean up test")
169 , m_contextType (contextType)
H A DteglImageTests.cpp367 const ContextType contextType (ApiType::es(2, 0));
368 Context context (m_eglTestCtx, dpy, contextType, 64, 64);
/external/skia/tools/gpu/gl/win/
H A DCreatePlatformGLTestContext_win.cpp84 SkWGLContextRequest contextType = local
93 fPbufferContext = SkWGLPbufferContext::Create(fDeviceContext, 0, contextType, winShareContext);
98 if (!(fGlRenderContext = SkCreateWGLContext(fDeviceContext, 0, false, contextType,
/external/skia/tools/gpu/
H A DGrContextFactory.h92 static const char* ContextTypeName(ContextType contextType) { argument
93 switch (contextType) {
/external/skia/src/utils/win/
H A DSkWGL_win.cpp337 static HGLRC create_gl_context(HDC dc, SkWGLExtensions extensions, SkWGLContextRequest contextType, argument
343 if (kGLES_SkWGLContextRequest == contextType) {
360 if (kGLPreferCoreProfile_SkWGLContextRequest == contextType &&
408 SkWGLContextRequest contextType, HGLRC shareContext) {
430 return create_gl_context(dc, extensions, contextType, shareContext);
434 SkWGLContextRequest contextType,
452 HGLRC glrc = create_gl_context(dc, extensions, contextType, shareContext);
407 SkCreateWGLContext(HDC dc, int msaaSampleCount, bool deepColor, SkWGLContextRequest contextType, HGLRC shareContext) argument
433 Create(HDC parentDC, int msaaSampleCount, SkWGLContextRequest contextType, HGLRC shareContext) argument
H A DSkWGL.h147 SkWGLContextRequest contextType, HGLRC shareContext);
/external/skia/tools/flags/
H A DSkCommonFlagsConfig.cpp201 const SkString& tag, const SkTArray<SkString>& viaParts, ContextType contextType, bool useNVPR,
205 , fContextType(contextType)
407 SkCommandLineConfigGpu::ContextType contextType = GrContextFactory::kGL_ContextType; local
435 valueOk = parse_option_gpu_api(value, &contextType);
463 return new SkCommandLineConfigGpu(tag, vias, contextType, useNVPR, useInstanced, useDIText,
200 SkCommandLineConfigGpu( const SkString& tag, const SkTArray<SkString>& viaParts, ContextType contextType, bool useNVPR, bool useInstanced, bool useDIText, int samples, SkColorType colorType, SkAlphaType alphaType, sk_sp<SkColorSpace> colorSpace, bool useStencilBuffers) argument
H A DSkCommonFlagsConfig.h57 ContextType contextType, bool useNVPR, bool useInstanced, bool useDIText,
/external/deqp/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp118 static std::string specializeShader (const std::string& shaderSource, const glu::ContextType& contextType) argument
120 const bool isES32 = glu::contextSupports(contextType, glu::ApiType::es(3, 2));
122 args["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(contextType));
200 VertexExpanderShader (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType);
208 std::string genGeometrySource (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType) const;
211 VertexExpanderShader::VertexExpanderShader (const glu::ContextType& contextType, rr::GeometryShaderInputType inputType, rr::GeometryShaderOutputType outputType) argument
218 << sglr::pdec::VertexSource(specializeShader(s_commonShaderSourceVertex, contextType))
219 << sglr::pdec::FragmentSource(specializeShader(s_commonShaderSourceFragment, contextType))
221 << sglr::pdec::GeometrySource(genGeometrySource(contextType, inputType, outputType).c_str()))
282 std::string VertexExpanderShader::genGeometrySource (const glu::ContextType& contextType, r argument
314 VertexEmitterShader(const glu::ContextType& contextType, int emitCountA, int endCountA, int emitCountB, int endCountB, rr::GeometryShaderOutputType outputType) argument
383 genGeometrySource(const glu::ContextType& contextType, int emitCountA, int endCountA, int emitCountB, int endCountB, rr::GeometryShaderOutputType outputType) const argument
447 VertexVaryingShader(const glu::ContextType& contextType, int vertexOut, int geometryOut) argument
610 genProgramDeclaration(const glu::ContextType& contextType, int vertexOut, int geometryOut) argument
799 OutputCountShader(const glu::ContextType& contextType, const OutputCountPatternSpec& spec) argument
856 genGeometrySource(const glu::ContextType& contextType, const OutputCountPatternSpec& spec) const argument
934 BuiltinVariableShader(const glu::ContextType& contextType, VariableTest test) argument
1047 genGeometrySource(const glu::ContextType& contextType, VariableTest test) const argument
1126 genVertexSource(const glu::ContextType& contextType, VariableTest test) const argument
1158 genFragmentSource(const glu::ContextType& contextType, VariableTest test) const argument
1227 VaryingOutputCountShader(const glu::ContextType& contextType, VaryingSource source, int maxEmitCount, bool instanced) argument
1355 genGeometrySource(const glu::ContextType& contextType, VaryingSource test, int maxEmitCount, bool instanced) argument
1445 genVertexSource(const glu::ContextType& contextType, VaryingSource test) argument
1502 InvocationCountShader(const glu::ContextType& contextType, int numInvocations, OutputCase testCase) argument
1590 genGeometrySource(const glu::ContextType& contextType, int numInvocations, OutputCase testCase) argument
1685 InstancedExpansionShader(const glu::ContextType& contextType, int numInvocations) argument
1737 genVertexSource(const glu::ContextType& contextType) argument
1752 genFragmentSource(const glu::ContextType& contextType) argument
1766 genGeometrySource(const glu::ContextType& contextType, int numInvocations) argument
[all...]
H A Des31fShaderStateQueryTests.cpp46 static inline std::string brokenShaderSource (const glu::ContextType &contextType) argument
48 const std::string glslVersionDecl = glu::getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(contextType));
H A Des31fShaderMultisampleInterpolationTests.cpp51 static std::string specializeShader(const std::string& shaderSource, const glu::ContextType& contextType) argument
53 const bool supportsES32 = glu::contextSupports(contextType, glu::ApiType::es(3, 2));
56 args["GLSL_VERSION_DECL"] = glu::getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(contextType));
H A Des31fTessellationGeometryInteractionTests.cpp57 static std::string specializeShader (const std::string& shaderSource, const glu::ContextType& contextType) argument
59 const bool supportsES32 = glu::contextSupports(contextType, glu::ApiType::es(3, 2));
62 shaderArgs["VERSION_DECL"] = glu::getGLSLVersionDeclaration(glu::getContextTypeGLSLVersion(contextType));
H A Des31fTextureLevelStateQueryTests.cpp100 static bool isCoreTextureTarget (glw::GLenum target, const glu::ContextType& contextType) argument
114 return glu::contextSupports(contextType, glu::ApiType::es(3, 2));
/external/deqp/modules/glshared/
H A DglsTextureStateQueryTests.cpp550 static bool isCoreTextureTarget (const glu::ContextType& contextType, glw::GLenum target) argument
552 if (contextSupports(contextType, glu::ApiType::es(3,2)))
554 else if (contextSupports(contextType, glu::ApiType::es(3,1)))
556 else if (contextSupports(contextType, glu::ApiType::es(3,0)))
565 static bool isCoreTextureParam (const glu::ContextType& contextType, glw::GLenum pname) argument
567 if (contextSupports(contextType, glu::ApiType::es(3,2)))
569 else if (contextSupports(contextType, glu::ApiType::es(3,1)))
571 else if (contextSupports(contextType, glu::ApiType::es(3,0)))
580 static bool isCoreQuery (const glu::ContextType& contextType, QueryType query) argument
582 if (contextSupports(contextType, gl
595 isCoreTester(const glu::ContextType& contextType, TesterType tester) argument
610 getTextureTargetExtension(const glu::ContextType& contextType, glw::GLenum target) argument
627 getTextureParamExtension(const glu::ContextType& contextType, glw::GLenum pname) argument
644 getQueryExtension(const glu::ContextType& contextType, QueryType query) argument
661 getTesterExtension(const glu::ContextType& contextType, TesterType tester) argument
[all...]
/external/skia/dm/
H A DDM.cpp847 GrContextFactory::ContextType contextType = gpuConfig->getContextType(); local
850 if (!testFactory.get(contextType, contextOverrides)) {
855 return new GPUSink(contextType, contextOverrides, gpuConfig->getSamples(),
1421 GrContextFactory::ContextType contextType = (GrContextFactory::ContextType) typeInt; local
1424 if (contextType == GrContextFactory::kGL_ContextType ||
1425 contextType == GrContextFactory::kGLES_ContextType) {
1426 if (contextType != kNativeGLType) {
1430 ContextInfo ctxInfo = factory->getContextInfo(contextType,
1432 if (contextTypeFilter && !(*contextTypeFilter)(contextType)) {
1435 ReporterContext ctx(reporter, SkString(GrContextFactory::ContextTypeName(contextType)));
[all...]
/external/deqp/framework/platform/lnx/X11/
H A DtcuLnxX11GlxPlatform.cpp116 const ContextType& contextType);
299 const ContextType& contextType)
302 const ApiType apiType = contextType.getAPI();
298 createContext(const GlxContextFactory& factory, const ContextType& contextType) argument
/external/guava/guava/src/com/google/common/reflect/
H A DTypeResolver.java319 Type contextType) {
321 introspector.visit(wildcardCapturer.capture(contextType));
318 getTypeMappings( Type contextType) argument
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp558 : contextType (glu::ApiType::es(3,0))
573 glu::ContextType contextType; member in struct:sglr::ReferenceContextLimits
H A DsglrReferenceContext.cpp239 : contextType (renderCtx.getType())
256 if (contextSupports(contextType, glu::ApiType::es(3,0)) || glu::isContextTypeGLCore(contextType))
277 if (contextSupports(contextType, glu::ApiType::es(3,1)))
313 : Context (limits.contextType)
604 RC_IF_ERROR(glu::isContextTypeES(m_limits.contextType) && (target == GL_TEXTURE_1D), GL_INVALID_ENUM, RC_RET_VOID);
1042 if (target == GL_TEXTURE_1D && glu::isContextTypeGLCore(m_limits.contextType))
1300 if (target == GL_TEXTURE_1D && glu::isContextTypeGLCore(m_limits.contextType))
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 679 milliseconds

12