| /xsrc/external/mit/libepoxy/dist/registry/ |
| README.md | 1 ## Updating the registry XML 3 In order to update the registry XML files and retain the history you cannot 4 simply download the files the [Khronos website](https://khronos.org/registry/OpenGL/index_gl.php) 7 1. check out the `khronos-registry` branch 9 3. copy them under the `registry` directory 11 5. check out the `master` branch and merge the `khronos-registry` branch
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/device-select-layer/ |
| device_select_wayland.c | 82 device_select_registry_global(void *data, struct wl_registry *registry, uint32_t name, 87 info->wl_drm = wl_registry_bind(registry, name, &wl_drm_interface, MIN2(version, 2)); 93 device_select_registry_global_remove_cb(void *data, struct wl_registry *registry, 102 struct wl_registry *registry = NULL; local 110 registry = wl_display_get_registry(display); 111 if (!registry) { 119 wl_registry_add_listener(registry, ®istry_listener, &info); 144 wl_registry_destroy(registry);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| zink_instance.py | 96 %if registry.in_registry(ext.name): 97 %for cmd in registry.get_registry_entry(ext.name).instance_commands: 100 %for cmd in registry.get_registry_entry(ext.name).pdevice_commands: 238 %if registry.in_registry(ext.name): 240 %for cmd in registry.get_registry_entry(ext.name).instance_commands: 249 %for cmd in registry.get_registry_entry(ext.name).pdevice_commands: 269 %if registry.in_registry(ext.name): 270 %for cmd in registry.get_registry_entry(ext.name).instance_commands + registry.get_registry_entry(ext.name).pdevice_commands: 310 registry = ExtensionRegistry(vkxml_path variable [all...] |
| zink_device_info.py | 314 %if registry.in_registry(ext.name): 315 %for cmd in registry.get_registry_entry(ext.name).device_commands: 487 %if registry.in_registry(ext.name): 489 %for cmd in registry.get_registry_entry(ext.name).device_commands: 509 %if registry.in_registry(ext.name): 510 %for cmd in registry.get_registry_entry(ext.name).device_commands: 553 registry = ExtensionRegistry(vkxml_path) variable 562 if not registry.in_registry(ext.name): 571 entry = registry.get_registry_entry(ext.name) 600 header = Template(header_code, lookup=lookup).render(extensions=extensions, versions=versions, registry=registry).strip( [all...] |
| zink_extensions.py | 149 # functions added by the extension are referred to as "commands" in the registry 158 # key = extension name, value = registry entry 159 registry = dict() variable in class:ExtensionRegistry 221 self.registry[name] = entry 224 return ext_name in self.registry 228 return self.registry[ext_name]
|
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| ftcid.h | 58 * Retrieve the Registry/Ordering/Supplement triple (also known as the 66 * registry :: 67 * The registry, as a C~string, owned by the face. 87 const char* *registry,
|
| t1tables.h | 406 FT_String* registry; member in struct:CID_FaceInfoRec_
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| ftbdf.c | 34 const char* registry = NULL; local 45 error = service->get_charset_id( face, &encoding, ®istry ); 53 *acharset_registry = registry;
|
| ftcid.c | 28 const char* *registry, 51 if ( registry ) 52 *registry = r;
|
| /xsrc/external/mit/freetype/dist/include/freetype/internal/services/ |
| svcid.h | 32 const char* *registry,
|
| /xsrc/external/mit/freetype/dist/src/cid/ |
| cidriver.c | 112 const char* *registry, 119 if ( registry ) 120 *registry = cid->registry;
|
| cidtoken.h | 27 T1_FIELD_STRING ( "Registry", registry, 0 )
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/eglut/ |
| eglut_wayland.c | 27 registry_handle_global(void *data, struct wl_registry *registry, uint32_t id, 34 wl_registry_bind(registry, id, &wl_compositor_interface, 1); 36 d->shell = wl_registry_bind(registry, id, &wl_shell_interface, 1); 41 registry_handle_global_remove(void *data, struct wl_registry *registry, 84 struct wl_registry *registry; local 91 registry = wl_display_get_registry(_eglut->native_dpy); 92 wl_registry_add_listener(registry, ®istry_listener, &display); 94 wl_registry_destroy(registry);
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/util/ |
| gen_enum_to_str.py | 239 self.registry = {} 244 return self.registry[name] 246 n = self.registry[name] = self.type(name, **kwargs) 250 return self.registry.get(name) 422 commands = sorted(command_factory.registry.values(), key=lambda e: e.name) 423 enums = sorted(enum_factory.registry.values(), key=lambda e: e.name) 424 extensions = sorted(ext_factory.registry.values(), key=lambda e: e.name) 425 structs = sorted(struct_factory.registry.values(), key=lambda e: e.name)
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/util/ |
| gen_enum_to_str.py | 224 self.registry = {} 229 return self.registry[name] 231 n = self.registry[name] = self.type(name, **kwargs) 235 return self.registry.get(name) 465 enums = sorted(enum_factory.registry.values(), key=lambda e: e.name) 466 extensions = sorted(ext_factory.registry.values(), key=lambda e: e.name) 467 structs = sorted(struct_factory.registry.values(), key=lambda e: e.name) 468 bitmasks = sorted(bitmask_factory.registry.values(), key=lambda e: e.name) 469 object_types = sorted(obj_type_factory.registry.values(), key=lambda e: e.name)
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/ |
| wsi_common_wayland.c | 317 registry_handle_global(void *data, struct wl_registry *registry, 327 wl_registry_bind(registry, name, &wl_drm_interface, 2); 332 wl_registry_bind(registry, name, &zwp_linux_dmabuf_v1_interface, 3); 339 registry_handle_global_remove(void *data, struct wl_registry *registry, 406 struct wl_registry *registry = local 408 if (!registry) { 413 wl_registry_add_listener(registry, ®istry_listener, display); 436 wl_registry_destroy(registry); 443 if (registry) 444 wl_registry_destroy(registry); [all...] |
| /xsrc/external/mit/freetype/dist/src/cff/ |
| cffdrivr.c | 696 const char* *registry, 715 if ( registry ) 717 if ( !cff->registry ) 718 cff->registry = cff_index_get_sid_string( cff, 720 *registry = cff->registry;
|
| /xsrc/external/mit/font-util/dist/ |
| ucs2any.c | 426 "Usage: ucs2any [+d|-d] <source-name> { <mapping-file> <registry-encoding> }\n" 441 " <registry-encoding> are the CHARSET_REGISTRY and CHARSET_ENCODING\n" 500 char *registry = NULL; local 716 "%s: Argument registry-encoding '%s' not in expected format!\n", 723 zstrcpy(®istry, temp); 728 "corresponding registry-encoding argument\n", fmap); 822 registry, encoding); 889 if (!registry) registry = zstrdup(""); 894 zstrcat(®istry_encoding, registry); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| wsi_common_wayland.c | 516 registry_handle_global(void *data, struct wl_registry *registry, 523 display->wl_shm = wl_registry_bind(registry, name, &wl_shm_interface, 1); 531 wl_registry_bind(registry, name, &zwp_linux_dmabuf_v1_interface, 3); 538 registry_handle_global_remove(void *data, struct wl_registry *registry, 597 struct wl_registry *registry = local 599 if (!registry) { 604 wl_registry_add_listener(registry, ®istry_listener, display); 636 wl_registry_destroy(registry); 643 if (registry) 644 wl_registry_destroy(registry); [all...] |
| /xsrc/external/mit/libXaw/dist/include/X11/Xaw/ |
| TextSinkP.h | 100 point_size, res_x, res_y, spacing, avgwidth, registry, encoding; member in struct:_XawTextProperty
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/ |
| Android.mk | 55 vulkan_api_xml = $(MESA_TOP)/src/vulkan/registry/vk.xml
|
| /xsrc/external/mit/libXaw/dist/src/ |
| TextSink.c | 1079 property->registry = XrmStringToQuark(name); 1198 *point_size, *res_x, *res_y, *spacing, *avgwidth, *registry, *encoding; local 1285 if (property->registry != NULLQUARK) 1286 registry = XrmQuarkToString(property->registry); 1288 registry = asterisk; 1307 registry, encoding); 1466 property->registry = combine->registry; 1689 if ((argval = XawFindArgVal(params, "registry")) != NULL & [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/_extra/specs/ |
| MESA_ycbcr_texture.spec | 203 registry.
|
| /xsrc/external/mit/MesaLib.old/dist/docs/specs/ |
| MESA_ycbcr_texture.spec | 203 registry.
|
| /xsrc/external/mit/freetype/dist/include/freetype/internal/ |
| cfftypes.h | 396 FT_String* registry; member in struct:CFF_FontRec_
|