/third_party/mesa3d/src/egl/ |
D | egl-entrypoint-check.py | 20 def check_entrypoint_sorted(entrypoints): argument 23 for i, _ in enumerate(entrypoints): 27 if entrypoints[i - 1] > entrypoints[i]: 28 print('ERROR: ' + entrypoints[i] + ' should come before ' + entrypoints[i - 1]) 69 entrypoints = [] 74 entrypoints.append(line[len(PREFIX):-len(SUFFIX)]) 76 check_entrypoint_sorted(entrypoints) 80 check_glvnd_entrypoints(entrypoints, glvnd_entrypoints)
|
/third_party/gstreamer/gstplugins_bad/sys/va/ |
D | gstvadisplay_priv.c | 35 VAEntrypoint *entrypoints; in gst_va_display_get_profiles() local 50 entrypoints = g_new (VAEntrypoint, num_entrypoints); in gst_va_display_get_profiles() 65 status = vaQueryConfigEntrypoints (dpy, profiles[i], entrypoints, in gst_va_display_get_profiles() 74 if (entrypoints[j] == entrypoint) { in gst_va_display_get_profiles() 84 g_free (entrypoints); in gst_va_display_get_profiles() 143 VAEntrypoint *entrypoints; in gst_va_display_has_vpp() local 155 entrypoints = g_new (VAEntrypoint, max); in gst_va_display_has_vpp() 158 status = vaQueryConfigEntrypoints (dpy, VAProfileNone, entrypoints, &num); in gst_va_display_has_vpp() 166 if (entrypoints[i] == VAEntrypointVideoProc) { in gst_va_display_has_vpp() 173 g_free (entrypoints); in gst_va_display_has_vpp()
|
D | plugin.c | 246 VAEntrypoint *entrypoints = g_new (VAEntrypoint, vaMaxNumEntrypoints (dpy)); in plugin_register_elements() local 269 status = vaQueryConfigEntrypoints (dpy, profiles[i], entrypoints, in plugin_register_elements() 277 if (entrypoints[j] == VAEntrypointVLD) in plugin_register_elements() 279 else if (entrypoints[j] == VAEntrypointEncSlice) in plugin_register_elements() 281 else if (entrypoints[j] == VAEntrypointEncSliceLP) in plugin_register_elements() 283 else if (entrypoints[j] == VAEntrypointEncPicture) in plugin_register_elements() 285 else if (entrypoints[j] == VAEntrypointVideoProc) in plugin_register_elements() 305 g_free (entrypoints); in plugin_register_elements()
|
/third_party/mesa3d/src/vulkan/util/ |
D | vk_entrypoints.py | 103 entrypoints = OrderedDict() 109 entrypoints[alias] = EntrypointAlias(alias, entrypoints[target]) 121 assert name not in entrypoints 122 entrypoints[name] = Entrypoint(name, ret_type, params, guard) 128 e = entrypoints[command.attrib['name']] 142 e = entrypoints[command.attrib['name']] 146 return entrypoints.values() 170 entrypoints = [] 174 entrypoints += get_entrypoints(doc, get_entrypoints_defines(doc)) 176 return entrypoints
|
D | vk_dispatch_trampolines_gen.py | 165 entrypoints = get_entrypoints_from_xml(args.xml_files) 172 f.write(TEMPLATE_H.render(entrypoints=entrypoints, 176 f.write(TEMPLATE_C.render(entrypoints=entrypoints,
|
D | vk_entrypoints_gen.py | 211 entrypoints = get_entrypoints_from_xml(args.xml_files) 216 for e in entrypoints:
|
D | vk_dispatch_table_gen.py | 660 entrypoints = get_entrypoints_from_xml(args.xml_files) 665 for e in entrypoints:
|
/third_party/mesa3d/docs/vulkan/ |
D | dispatch.rst | 90 de-duplicated so that aliased entrypoints have only one entry in the table. 109 such entrypoints are wrapped in a union. This is important because we need 112 newly aliased entrypoints. We could require that everyone use the first 168 any entrypoints which are not implented will automatically show up as 195 instance entrypoints from the Intel vulkan driver and then adds in the WSI 196 entrypoints. If there are any entrypoints duplicated between the two, the 200 Common Vulkan entrypoints 205 entrypoints. This entrypoint table is added last as part of 211 entrypoints. We provide wrappers for nearly all of these that implement 239 trivial functionality as ``vk_common_*`` entrypoints. For instance, we [all …]
|
D | renderpass.rst | 12 directly and not bother implementing the old Vulkan 1.0 entrypoints. If a
|
/third_party/skia/third_party/externals/angle2/src/third_party/volk/ |
D | README.chromium | 11 entrypoints required to use Vulkan without linking to vulkan-1.dll 14 entrypoints. Finally, volk enables loading Vulkan entrypoints directly
|
D | README.md | 13 volk is a meta-loader for Vulkan. It allows you to dynamically load entrypoints required to use Vul… 14 …s the use of Vulkan extensions by automatically loading all associated entrypoints. Finally, volk … 15 Vulkan entrypoints directly from the driver which can increase performance by skipping loader dispa… 47 This function will load all required Vulkan entrypoints, including all extensions; you can use Vulk… 56 1. For applications that use just one VkDevice object, load device-related Vulkan entrypoints direc… 62 2. For applications that use multiple VkDevice objects, load device-related Vulkan entrypoints into… 70 …entrypoints are loaded using `vkGetDeviceProcAddr`; when no layers are present, this commonly resu…
|
/third_party/flutter/flutter/dev/integration_tests/named_isolates/lib/ |
D | main.dart | 21 // `first` and `second` are the actual entrypoints to this app, but dart specs
|
/third_party/mesa3d/src/vulkan/runtime/ |
D | vk_instance.c | 239 const struct vk_instance_entrypoint_table *entrypoints, in vk_instance_get_proc_addr() argument 253 return (PFN_vkVoidFunction)entrypoints->entrypoint in vk_instance_get_proc_addr()
|
D | vk_instance.h | 151 const struct vk_instance_entrypoint_table *entrypoints,
|
/third_party/mesa3d/docs/drivers/ |
D | asahi.rst | 22 Mesa includes a library that wraps the key IOKit entrypoints used in the macOS
|
/third_party/vulkan-loader/tests/framework/ |
D | test_util.h | 582 …on(std::string name, uint32_t spec_version = 0, std::vector<std::string> entrypoints = {}) noexcept 583 : name(name), spec_version(spec_version), entrypoints(entrypoints) {} in name() 586 std::vector<std::string> entrypoints; member
|
/third_party/skia/third_party/externals/dawn/docs/ |
D | fuzzing.md | 13 … API usage which allows the fuzzer to quickly discover and use new API entrypoints and usage patte…
|
/third_party/mesa3d/docs/relnotes/ |
D | 7.0.1.rst | 30 - Added a few missing OpenGL 2.0 API entrypoints:
|
D | 20.1.6.rst | 82 - egl/entrypoint-check: add check that GLVND and plain EGL have the same entrypoints
|
D | 21.2.5.rst | 54 - vulkan: Set unused entrypoints to vk_entrypoint_stub when compiling with MSVC
|
D | 6.5.1.rst | 88 entrypoints for some extensions were removed. This means GL function
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/web/ |
D | compile.dart | 80 /// the entrypoints for dart2js to later take over.
|
/third_party/vulkan-loader/loader/ |
D | loader.c | 215 loader_instance_heap_free(inst, ext_props->entrypoints[j]); in loader_free_layer_properties() 217 loader_instance_heap_free(inst, ext_props->entrypoints); in loader_free_layer_properties() 741 ext_list->list[idx].entrypoints = NULL; in loader_add_to_dev_ext_list() 743 ext_list->list[idx].entrypoints = in loader_add_to_dev_ext_list() 745 if (ext_list->list[idx].entrypoints == NULL) { in loader_add_to_dev_ext_list() 752 ext_list->list[idx].entrypoints[i] = in loader_add_to_dev_ext_list() 754 if (ext_list->list[idx].entrypoints[i] == NULL) { in loader_add_to_dev_ext_list() 756 loader_instance_heap_free(inst, ext_list->list[idx].entrypoints[j]); in loader_add_to_dev_ext_list() 758 loader_instance_heap_free(inst, ext_list->list[idx].entrypoints); in loader_add_to_dev_ext_list() 760 ext_list->list[idx].entrypoints = NULL; in loader_add_to_dev_ext_list() [all …]
|
D | loader_common.h | 78 char **entrypoints; member
|
/third_party/openGLES/extensions/IMG/ |
D | IMG_user_clip_plane.txt | 146 0.2, 3/11/2004 bcb: Renamed entrypoints to add IMG suffix.
|