Home
last modified time | relevance | path

Searched refs:getMajorVersion (Results 1 – 20 of 20) sorted by relevance

/third_party/vk-gl-cts/framework/platform/ohos/context/
DtcuOhosNativeContext.cpp76 printf("config.type.getMajorVersion() = %d\n", config.type.getMajorVersion()); in OhosRendContext()
92 if (config.type.getMajorVersion() == 2 && config.type.getMinorVersion() == 0) in OhosRendContext()
96 else if (config.type.getMajorVersion() == 3 && config.type.getMinorVersion() == 0) in OhosRendContext()
100 else if (config.type.getMajorVersion() == 3 && config.type.getMinorVersion() == 1) in OhosRendContext()
104 else if (config.type.getMajorVersion() == 3 && config.type.getMinorVersion() == 2) in OhosRendContext()
/third_party/vk-gl-cts/framework/egl/
DegluGLUtil.cpp65 switch (apiType.getMajorVersion()) in apiRenderableType()
97 if (contextType.getMajorVersion() <= 2) in createGLContext()
100 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
108 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
123 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
/third_party/vk-gl-cts/framework/opengl/
DgluRenderContext.cpp56 return a.getMajorVersion() > b.getMajorVersion() || in versionGreaterOrEqual()
57 (a.getMajorVersion() == b.getMajorVersion() && a.getMinorVersion() >= b.getMinorVersion()); in versionGreaterOrEqual()
192 if (apiType.getProfile() == PROFILE_ES && apiType.getMajorVersion() == 2) in getExtensions()
DgluRenderContext.hpp81 …int getMajorVersion (void) const { return int((m_bits>>MAJOR_SHIFT) & ((1u<<MAJOR_BITS)-1u))… in getMajorVersion() function in glu::ApiType
155 using ApiType::getMajorVersion;
196 …isES2Context (ContextType type) { return isContextTypeES(type) && type.getMajorVersion() == 2; } in isES2Context()
DgluStrUtil.cpp133 str << apiType.getMajorVersion() << "." << apiType.getMinorVersion(); in operator <<()
/third_party/node/deps/npm/scripts/
Dupdate-dist-tags.js23 const getMajorVersion = (input) => semver.parse(input).major function
47 const major = getMajorVersion(version)
/third_party/vk-gl-cts/framework/platform/osx/
DtcuOSXPlatform.cpp141 if (type.getAPI().getMajorVersion() == 4) in getCGLProfile()
143 else if (type.getAPI().getMajorVersion() == 3) in getCGLProfile()
/third_party/vk-gl-cts/framework/platform/null/
DtcuNullRenderContext.cpp176 else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 3) in Context()
181 …else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.getMinorVe… in Context()
186 …else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.getMinorVe… in Context()
191 …else if (glu::isContextTypeGLCore(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.getMinorVe… in Context()
196 …else if (glu::isContextTypeGLCompatibility(ctxType) && ctxType.getMajorVersion() == 4 && ctxType.g… in Context()
/third_party/vk-gl-cts/framework/opengl/simplereference/
DsglrReferenceUtils.cpp50 …mpingNormalization = (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() >= 3) || in mapGLFloatVertexAttributeType()
51 (ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() >= 2); in mapGLFloatVertexAttributeType()
DsglrReferenceContext.cpp256 int majorVersion = contextType.getMajorVersion(); in ReferenceContextLimits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DWindowsResource.h110 uint16_t getMajorVersion() const { return Suffix->Version >> 16; } in getMajorVersion() function
177 uint16_t getMajorVersion() const { return MajorVersion; } in getMajorVersion() function
/third_party/vk-gl-cts/framework/platform/surfaceless/
DtcuSurfacelessPlatform.cpp290 switch(contextType.getMajorVersion()) in EglRenderContext()
396 context_attribs.push_back(contextType.getMajorVersion()); in EglRenderContext()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fNegativeShaderDirectiveTests.cpp603 …if ((ctx.getRenderContext().getType().getMajorVersion() == 3) && (ctx.getRenderContext().getType()… in accessing_bounding_box_type()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWindowsResource.cpp504 bool Added = addDataChild(Entry.getLanguage(), Entry.getMajorVersion(), in addLanguageNode()
888 Table->MajorVersion = CurrentNode->getMajorVersion(); in writeDirectoryTree()
/third_party/vk-gl-cts/framework/platform/win32/
DtcuWGL.cpp439 int major = ctxType.getMajorVersion(); in Context()
/third_party/vk-gl-cts/modules/egl/
DteglImageTests.cpp176 return m_api.getMajorVersion() >= 3 || glu::hasExtension(m_gl, m_api, "GL_EXT_texture_rg"); in isGLRedSupported()
/third_party/vk-gl-cts/framework/platform/lnx/X11/
DtcuLnxX11GlxPlatform.cpp355 attribs.push_back(apiType.getMajorVersion()); in createContext()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fNegativeShaderApiTests.cpp993 DE_ASSERT(m_context.getRenderContext().getType().getMajorVersion() < 3); in init()
/third_party/vk-gl-cts/modules/glshared/
DglsShaderLibraryCase.cpp859 const int majorVer = renderCtx.getType().getMajorVersion(); in isTessellationSupported()
DglsDrawTest.cpp2173 if (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() == 3) in valid()