Home | History | Annotate | Download | only in loader

Lines Matching full:interface_struct

4459                                         VkNegotiateLayerInterface *interface_struct) {
4460 memset(interface_struct, 0, sizeof(VkNegotiateLayerInterface));
4461 interface_struct->sType = LAYER_NEGOTIATE_INTERFACE_STRUCT;
4462 interface_struct->loaderLayerInterfaceVersion = 1;
4467 interface_struct->loaderLayerInterfaceVersion = CURRENT_LOADER_LAYER_INTERFACE_VERSION;
4468 VkResult result = fp_negotiate_layer_version(interface_struct);
4477 if (interface_struct->loaderLayerInterfaceVersion < MIN_SUPPORTED_LOADER_LAYER_INTERFACE_VERSION) {
4560 VkNegotiateLayerInterface interface_struct;
4562 if (loader_get_layer_interface_version(negotiate_interface, &interface_struct)) {
4565 layer_prop->interface_version = interface_struct.loaderLayerInterfaceVersion;
4571 if (interface_struct.loaderLayerInterfaceVersion > 1) {
4572 cur_gipa = interface_struct.pfnGetInstanceProcAddr;
4573 cur_gpdpa = interface_struct.pfnGetPhysicalDeviceProcAddr;
4755 VkNegotiateLayerInterface interface_struct;
4757 if (loader_get_layer_interface_version(negotiate_interface, &interface_struct)) {
4759 layer_prop->interface_version = interface_struct.loaderLayerInterfaceVersion;
4763 if (interface_struct.loaderLayerInterfaceVersion > 1) {
4764 fpGIPA = interface_struct.pfnGetInstanceProcAddr;
4765 fpGDPA = interface_struct.pfnGetDeviceProcAddr;