/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/ |
D | vkExtensionFunctions.inl | 5 void getInstanceExtensionFunctions (uint32_t apiVersion, ::std::string extName, ::std::vector<const… argument 7 if (extName == "VK_KHR_surface") 16 if (extName == "VK_KHR_swapchain") 21 if (extName == "VK_KHR_display") 32 if (extName == "VK_KHR_display_swapchain") 36 if (extName == "VK_KHR_sampler_mirror_clamp_to_edge") 40 if (extName == "VK_KHR_dynamic_rendering") 44 if (extName == "VK_KHR_multiview") 48 if (extName == "VK_KHR_get_physical_device_properties2") 59 if (extName == "VK_KHR_device_group") [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
D | angle_test_platform.cpp | 91 bool EnsureGLExtensionEnabled(const std::string &extName) in EnsureGLExtensionEnabled() argument 93 if (IsGLExtensionEnabled("GL_ANGLE_request_extension") && IsGLExtensionRequestable(extName)) in EnsureGLExtensionEnabled() 95 glRequestExtensionANGLE(extName.c_str()); in EnsureGLExtensionEnabled() 98 return IsGLExtensionEnabled(extName); in EnsureGLExtensionEnabled() 101 bool IsEGLClientExtensionEnabled(const std::string &extName) in IsEGLClientExtensionEnabled() argument 103 return CheckExtensionExists(eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS), extName); in IsEGLClientExtensionEnabled() 106 bool IsEGLDeviceExtensionEnabled(EGLDeviceEXT device, const std::string &extName) in IsEGLDeviceExtensionEnabled() argument 108 return CheckExtensionExists(eglQueryDeviceStringEXT(device, EGL_EXTENSIONS), extName); in IsEGLDeviceExtensionEnabled() 111 bool IsEGLDisplayExtensionEnabled(EGLDisplay display, const std::string &extName) in IsEGLDisplayExtensionEnabled() argument 113 return CheckExtensionExists(eglQueryString(display, EGL_EXTENSIONS), extName); in IsEGLDisplayExtensionEnabled() [all …]
|
D | angle_test_platform.h | 33 bool EnsureGLExtensionEnabled(const std::string &extName); 34 bool IsEGLClientExtensionEnabled(const std::string &extName); 35 bool IsEGLDeviceExtensionEnabled(EGLDeviceEXT device, const std::string &extName); 36 bool IsEGLDisplayExtensionEnabled(EGLDisplay display, const std::string &extName); 37 bool IsGLExtensionEnabled(const std::string &extName); 38 bool IsGLExtensionRequestable(const std::string &extName);
|
/third_party/vk-gl-cts/modules/egl/ |
D | teglGetProcAddressTests.cpp | 64 FunctionNames getExtFunctionNames (const std::string& extName) in getExtFunctionNames() argument 68 if (extName == s_extensions[ndx].name) in getExtFunctionNames() 90 bool isSupported (const std::string& extName); 162 bool GetProcAddressCase::isSupported (const std::string& extName) in isSupported() argument 164 return de::contains(m_supported.begin(), m_supported.end(), extName); in isSupported() 172 …(EglTestContext& eglTestCtx, const char* name, const char* description, const std::string& extName) in GetProcAddressExtensionCase() argument 174 , m_extName (extName) in GetProcAddressExtensionCase() 363 const std::string& extName = s_extensions[extNdx].name; in init() local 364 std::string testName (extName); in init() 366 for (size_t ndx = 0; ndx < extName.length(); ndx++) in init() [all …]
|
/third_party/vk-gl-cts/modules/gles2/ |
D | tes2CapabilityTests.cpp | 105 …testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName); 114 … testCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, const char* extName) in ExtensionCase() argument 117 , m_extName (extName) in ExtensionCase() 152 ExtGroup& operator<< (const char* extName) in init() 154 group->addChild(new ExtensionCase(group->getTestContext(), ctxInfo, extName, "", extName)); in init()
|
/third_party/weex-loader/src/ |
D | json.js | 34 const extName = path.extname(this.resourcePath) 38 if (extName === '.js' || extName === '.json') { 62 if (extName === '.js') {
|
/third_party/vk-gl-cts/scripts/opengl/ |
D | gen_ext_init.py | 46 for extName in EXTENSIONS: 47 extCommands = getExtensionCommands(registry, iface, api, extName) 52 yield "if (de::contains(extSet, \"%s\"))" % extName
|
D | src_util.py | 170 for extName in EXTENSIONS: 171 extension = registry.extensions[extName]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
D | extensionmetadocgenerator.py | 167 def conditionalLinkExt(self, extName, indent = ' '): argument 168 doc = 'ifdef::' + extName + '[]\n' 169 doc += indent + self.conventions.formatExtension(extName) + '\n' 170 doc += 'endif::' + extName + '[]\n' 171 doc += 'ifndef::' + extName + '[]\n' 172 doc += indent + '`' + extName + '`\n' 173 doc += 'endif::' + extName + '[]\n' 412 def conditionalExt(self, extName, content, ifdef = None, condition = None): argument 415 innerdoc = 'ifdef::' + extName + '[]\n' 417 innerdoc += 'endif::' + extName + '[]\n' [all …]
|
D | reg.py | 1360 …for (extName, ei) in sorted(self.extdict.items(), key=lambda x: x[1].number if x[1].number is not … 1361 extName = ei.name 1369 extName, "(defaultExtensions matches the 'supported' attribute)") 1377 if regAddExtensions.match(extName) is not None: 1380 … extName, '(matches explicitly requested, but does not match the \'supported\' attribute)') 1384 extName, '(matches explicitly requested extensions to add)') 1390 if regRemoveExtensions.match(extName) is not None: 1392 extName, '(matches explicitly requested extensions to remove)') 1398 ei.emit = (regEmitExtensions.match(extName) is not None) 1402 extName, [all …]
|
/third_party/skia/third_party/externals/angle2/util/ |
D | util_gl.h | 34 inline bool CheckExtensionExists(const char *allExtensions, const std::string &extName) in CheckExtensionExists() argument 37 return paddedExtensions.find(std::string(" ") + extName + std::string(" ")) != in CheckExtensionExists()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderBuiltinConstantTests.cpp | 200 const std::string& extName) in createGetConstantExecutor() argument 213 …if (!extName.empty() && !(supportsES32orGL45 && (extName == "GL_OES_sample_variables" || extName =… in createGetConstantExecutor() 214 shaderSpec.globalDeclarations = "#extension " + extName + " : require\n"; in createGetConstantExecutor()
|
D | es31fNegativeShaderFramebufferFetchTests.cpp | 59 static void checkExtensionSupport (NegativeTestContext& ctx, const char* extName) in checkExtensionSupport() argument 61 if (!ctx.getContextInfo().isExtensionSupported(extName)) in checkExtensionSupport() 62 throw tcu::NotSupportedError(string(extName) + " not supported"); in checkExtensionSupport()
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
D | gen_ext_deps.py | 84 for extName in extNames: 85 (major, minor) = coreVersionsDict[extName] 86 yield '\tstd::make_tuple({}, {}, "{}"),'.format(major, minor, extName)
|
D | ohos_gen_ext_deps.py | 85 for extName in extNames: 86 (major, minor) = coreVersionsDict[extName] 87 yield '\tstd::make_tuple({}, {}, "{}"),'.format(major, minor, extName)
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | CompressedTextureFormatsTest.cpp | 253 for (const std::string &extName : mExtNames) in test() local 255 if (!extName.empty()) in test() 257 if (IsGLExtensionRequestable(extName)) in test() 259 glRequestExtensionANGLE(extName.c_str()); in test() 261 ANGLE_SKIP_TEST_IF(!IsGLExtensionEnabled(extName)); in test()
|
/third_party/vk-gl-cts/scripts/egl/ |
D | proc_address_tests.py | 33 def toCamelCase (extName): argument 34 return "".join([x.title() for x in extName.split("_")])
|
/third_party/vulkan-headers/registry/ |
D | reg.py | 1503 …for (extName, ei) in sorted(self.extdict.items(), key=lambda x: x[1].number if x[1].number is not … 1504 extName = ei.name 1512 extName, "(defaultExtensions matches the 'supported' attribute)") 1520 if regAddExtensions.match(extName) is not None: 1523 … extName, '(matches explicitly requested, but does not match the \'supported\' attribute)') 1527 extName, '(matches explicitly requested extensions to add)') 1533 if regRemoveExtensions.match(extName) is not None: 1535 extName, '(matches explicitly requested extensions to remove)') 1541 ei.emit = (regEmitExtensions.match(extName) is not None) 1545 extName, [all …]
|
/third_party/vk-gl-cts/framework/platform/lnx/X11/ |
D | tcuLnxX11GlxPlatform.cpp | 110 bool isGlxExtensionSupported (const char* extName) const; 269 bool GlxDisplay::isGlxExtensionSupported (const char* extName) const in isGlxExtensionSupported() 271 return m_extensions.find(extName) != m_extensions.end(); in isGlxExtensionSupported() 292 static void checkGlxExtension (const GlxDisplay& dpy, const char* extName) in checkGlxExtension() argument 294 if (!dpy.isGlxExtensionSupported(extName)) in checkGlxExtension() 297 oss << "GLX extension \"" << extName << "\" not supported"; in checkGlxExtension()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | local_single_block_elim_pass.cpp | 186 const char* extName = in AllExtensionsSupported() local 188 if (extensions_allowlist_.find(extName) == extensions_allowlist_.end()) in AllExtensionsSupported()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | local_single_block_elim_pass.cpp | 186 const char* extName = in AllExtensionsSupported() local 188 if (extensions_allowlist_.find(extName) == extensions_allowlist_.end()) in AllExtensionsSupported()
|
/third_party/spirv-tools/source/opt/ |
D | local_single_block_elim_pass.cpp | 187 const std::string extName = ei.GetInOperand(0).AsString(); in AllExtensionsSupported() local 188 if (extensions_allowlist_.find(extName) == extensions_allowlist_.end()) in AllExtensionsSupported()
|
/third_party/skia/third_party/externals/opengl-registry/xml/ |
D | reg.py | 1044 extName = ei.name 1055 extName, "(defaultExtensions matches the 'supported' attribute)") 1062 if (regAddExtensions.match(extName) != None): 1064 extName, '(matches explicitly requested extensions to add)') 1070 if (regRemoveExtensions.match(extName) != None): 1072 extName, '(matches explicitly requested extensions to remove)') 1082 extName, '(does not match api attribute or explicitly requested extensions)')
|
/third_party/EGL/api/ |
D | reg.py | 1042 extName = ei.name 1053 extName, "(defaultExtensions matches the 'supported' attribute)") 1060 if (regAddExtensions.match(extName) != None): 1062 extName, '(matches explicitly requested extensions to add)') 1068 if (regRemoveExtensions.match(extName) != None): 1070 extName, '(matches explicitly requested extensions to remove)') 1080 extName, '(does not match api attribute or explicitly requested extensions)')
|
/third_party/openGLES/xml/ |
D | reg.py | 1033 extName = ei.name 1044 extName, "(defaultExtensions matches the 'supported' attribute)") 1051 if (regAddExtensions.match(extName) != None): 1053 extName, '(matches explicitly requested extensions to add)') 1059 if (regRemoveExtensions.match(extName) != None): 1061 extName, '(matches explicitly requested extensions to remove)') 1071 extName, '(does not match api attribute or explicitly requested extensions)')
|