Home
last modified time | relevance | path

Searched refs:entrypoints (Results 1 – 25 of 84) sorted by relevance

1234

/third_party/mesa3d/src/egl/
Degl-entrypoint-check.py20 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/
Dgstvadisplay_priv.c35 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()
Dplugin.c246 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/
Dvk_entrypoints.py103 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
Dvk_dispatch_trampolines_gen.py165 entrypoints = get_entrypoints_from_xml(args.xml_files)
172 f.write(TEMPLATE_H.render(entrypoints=entrypoints,
176 f.write(TEMPLATE_C.render(entrypoints=entrypoints,
Dvk_entrypoints_gen.py211 entrypoints = get_entrypoints_from_xml(args.xml_files)
216 for e in entrypoints:
Dvk_dispatch_table_gen.py660 entrypoints = get_entrypoints_from_xml(args.xml_files)
665 for e in entrypoints:
/third_party/mesa3d/docs/vulkan/
Ddispatch.rst90 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 …]
Drenderpass.rst12 directly and not bother implementing the old Vulkan 1.0 entrypoints. If a
/third_party/skia/third_party/externals/angle2/src/third_party/volk/
DREADME.chromium11 entrypoints required to use Vulkan without linking to vulkan-1.dll
14 entrypoints. Finally, volk enables loading Vulkan entrypoints directly
DREADME.md13 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…
70entrypoints are loaded using `vkGetDeviceProcAddr`; when no layers are present, this commonly resu…
/third_party/flutter/flutter/dev/integration_tests/named_isolates/lib/
Dmain.dart21 // `first` and `second` are the actual entrypoints to this app, but dart specs
/third_party/mesa3d/src/vulkan/runtime/
Dvk_instance.c239 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()
Dvk_instance.h151 const struct vk_instance_entrypoint_table *entrypoints,
/third_party/mesa3d/docs/drivers/
Dasahi.rst22 Mesa includes a library that wraps the key IOKit entrypoints used in the macOS
/third_party/vulkan-loader/tests/framework/
Dtest_util.h582 …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/
Dfuzzing.md13 … API usage which allows the fuzzer to quickly discover and use new API entrypoints and usage patte…
/third_party/mesa3d/docs/relnotes/
D7.0.1.rst30 - Added a few missing OpenGL 2.0 API entrypoints:
D20.1.6.rst82 - egl/entrypoint-check: add check that GLVND and plain EGL have the same entrypoints
D21.2.5.rst54 - vulkan: Set unused entrypoints to vk_entrypoint_stub when compiling with MSVC
D6.5.1.rst88 entrypoints for some extensions were removed. This means GL function
/third_party/flutter/flutter/packages/flutter_tools/lib/src/web/
Dcompile.dart80 /// the entrypoints for dart2js to later take over.
/third_party/vulkan-loader/loader/
Dloader.c215 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 …]
Dloader_common.h78 char **entrypoints; member
/third_party/openGLES/extensions/IMG/
DIMG_user_clip_plane.txt146 0.2, 3/11/2004 bcb: Renamed entrypoints to add IMG suffix.

1234