/third_party/vk-gl-cts/framework/platform/ohos/context/ |
D | tcuOhosNativeContext.cpp | 76 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/ |
D | egluGLUtil.cpp | 65 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/ |
D | gluRenderContext.cpp | 56 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()
|
D | gluRenderContext.hpp | 81 …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()
|
D | gluStrUtil.cpp | 133 str << apiType.getMajorVersion() << "." << apiType.getMinorVersion(); in operator <<()
|
/third_party/node/deps/npm/scripts/ |
D | update-dist-tags.js | 23 const getMajorVersion = (input) => semver.parse(input).major function 47 const major = getMajorVersion(version)
|
/third_party/vk-gl-cts/framework/platform/osx/ |
D | tcuOSXPlatform.cpp | 141 if (type.getAPI().getMajorVersion() == 4) in getCGLProfile() 143 else if (type.getAPI().getMajorVersion() == 3) in getCGLProfile()
|
/third_party/vk-gl-cts/framework/platform/null/ |
D | tcuNullRenderContext.cpp | 176 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/ |
D | sglrReferenceUtils.cpp | 50 …mpingNormalization = (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() >= 3) || in mapGLFloatVertexAttributeType() 51 (ctxType.getMajorVersion() == 4 && ctxType.getMinorVersion() >= 2); in mapGLFloatVertexAttributeType()
|
D | sglrReferenceContext.cpp | 256 int majorVersion = contextType.getMajorVersion(); in ReferenceContextLimits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | WindowsResource.h | 110 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/ |
D | tcuSurfacelessPlatform.cpp | 290 switch(contextType.getMajorVersion()) in EglRenderContext() 396 context_attribs.push_back(contextType.getMajorVersion()); in EglRenderContext()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fNegativeShaderDirectiveTests.cpp | 603 …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/ |
D | WindowsResource.cpp | 504 bool Added = addDataChild(Entry.getLanguage(), Entry.getMajorVersion(), in addLanguageNode() 888 Table->MajorVersion = CurrentNode->getMajorVersion(); in writeDirectoryTree()
|
/third_party/vk-gl-cts/framework/platform/win32/ |
D | tcuWGL.cpp | 439 int major = ctxType.getMajorVersion(); in Context()
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglImageTests.cpp | 176 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/ |
D | tcuLnxX11GlxPlatform.cpp | 355 attribs.push_back(apiType.getMajorVersion()); in createContext()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fNegativeShaderApiTests.cpp | 993 DE_ASSERT(m_context.getRenderContext().getType().getMajorVersion() < 3); in init()
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsShaderLibraryCase.cpp | 859 const int majorVer = renderCtx.getType().getMajorVersion(); in isTessellationSupported()
|
D | glsDrawTest.cpp | 2173 if (ctxType.getProfile() == glu::PROFILE_ES && ctxType.getMajorVersion() == 3) in valid()
|