/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_instance.h | 207 static inline size_t vn_sizeof_vkCreateInstance(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) in vn_sizeof_vkCreateInstance() argument 219 cmd_size += vn_sizeof_simple_pointer(pInstance); in vn_sizeof_vkCreateInstance() 220 if (pInstance) in vn_sizeof_vkCreateInstance() 221 cmd_size += vn_sizeof_VkInstance(pInstance); in vn_sizeof_vkCreateInstance() 226 static inline void vn_encode_vkCreateInstance(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) in vn_encode_vkCreateInstance() argument 237 if (vn_encode_simple_pointer(enc, pInstance)) in vn_encode_vkCreateInstance() 238 vn_encode_VkInstance(enc, pInstance); in vn_encode_vkCreateInstance() 241 static inline size_t vn_sizeof_vkCreateInstance_reply(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) in vn_sizeof_vkCreateInstance_reply() argument 250 cmd_size += vn_sizeof_simple_pointer(pInstance); in vn_sizeof_vkCreateInstance_reply() 251 if (pInstance) in vn_sizeof_vkCreateInstance_reply() 257 vn_decode_vkCreateInstance_reply(struct vn_cs_decoder *dec, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) vn_decode_vkCreateInstance_reply() argument 559 vn_submit_vkCreateInstance(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance, struct vn_instance_submit_command *submit) vn_submit_vkCreateInstance() argument 664 vn_call_vkCreateInstance(struct vn_instance *vn_instance, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) vn_call_vkCreateInstance() argument 680 vn_async_vkCreateInstance(struct vn_instance *vn_instance, const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) vn_async_vkCreateInstance() argument [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cPipelineStatisticsQueryTests.cpp | 2265 PipelineStatisticsQueryTestFunctionalBase* pInstance = (PipelineStatisticsQueryTestFunctionalBase*)pThis; in queryCallbackDrawCallHandler() local 2266 const glw::Functions& gl = pInstance->m_context.getRenderContext().getFunctions(); in queryCallbackDrawCallHandler() 2270 PipelineStatisticsQueryUtilities::getEnumForPrimitiveType(pInstance->m_current_primitive_type); in queryCallbackDrawCallHandler() 2272 switch (pInstance->m_current_draw_call_type) in queryCallbackDrawCallHandler() 2276 gl.drawArrays(primitive_type, pInstance->m_indirect_draw_call_first_argument, in queryCallbackDrawCallHandler() 2277 pInstance->m_indirect_draw_call_count_argument); in queryCallbackDrawCallHandler() 2287 (const glw::GLvoid*)(deUintptr)pInstance->m_vbo_indirect_arrays_argument_offset); in queryCallbackDrawCallHandler() 2296 gl.drawArraysInstanced(primitive_type, pInstance->m_indirect_draw_call_first_argument, in queryCallbackDrawCallHandler() 2297 pInstance->m_indirect_draw_call_count_argument, in queryCallbackDrawCallHandler() 2298 pInstance in queryCallbackDrawCallHandler() 4424 queryCallbackDispatchCallHandler(void* pInstance) queryCallbackDispatchCallHandler() argument [all...] |
H A D | gl4cPipelineStatisticsQueryTests.hpp | 720 static bool queryCallbackDispatchCallHandler(void* pInstance);
|
/third_party/mesa3d/src/vulkan/device-select-layer/ |
H A D | device_select_layer.c | 124 VkInstance *pInstance) in device_select_CreateInstance() 144 VkResult result = fpCreateInstance(pCreateInfo, pAllocator, pInstance); in device_select_CreateInstance() 169 #define DEVSEL_GET_CB(func) info->func = (PFN_vk##func)info->GetInstanceProcAddr(*pInstance, "vk" #func) in device_select_CreateInstance() 179 device_select_layer_add_instance(*pInstance, info); in device_select_CreateInstance() 122 device_select_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) device_select_CreateInstance() argument
|
/third_party/vulkan-loader/tests/framework/layer/ |
H A D | test_layer.cpp | 242 const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) { 281 memset(*pInstance, 0, 128); 285 VkResult result = fpCreateInstance(create_info_pointer, pAllocator, pInstance); 289 layer.instance_handle = *pInstance; 292 reinterpret_cast<PFN_GetPhysicalDeviceProcAddr>(fpGetInstanceProcAddr(*pInstance, "vk_layerGetPhysicalDeviceProcAddr")); 307 auto next_func = layer.next_GetPhysicalDeviceProcAddr(*pInstance, func.name.c_str()); 312 auto next_func = layer.next_vkGetInstanceProcAddr(*pInstance, func.name.c_str());
|
H A D | wrap_objects.cpp | 165 const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) { in wrap_vkCreateInstance() 174 VkResult result = fpCreateInstance(pCreateInfo, pAllocator, pInstance); in wrap_vkCreateInstance() 182 inst->obj = (*pInstance); in wrap_vkCreateInstance() 183 *pInstance = reinterpret_cast<VkInstance>(inst); in wrap_vkCreateInstance() 164 wrap_vkCreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) wrap_vkCreateInstance() argument
|
/third_party/mesa3d/src/intel/nullhw-layer/ |
H A D | intel_nullhw.c | 295 VkInstance* pInstance) in nullhw_CreateInstance() 312 VkResult result = fpCreateInstance(pCreateInfo, pAllocator, pInstance); in nullhw_CreateInstance() 315 struct instance_data *instance_data = new_instance_data(*pInstance); in nullhw_CreateInstance() 292 nullhw_CreateInstance( const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) nullhw_CreateInstance() argument
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_instance.c | 692 VkInstance *pInstance) in vn_CreateInstance() 797 *pInstance = instance_handle; in vn_CreateInstance() 690 vn_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) vn_CreateInstance() argument
|
/third_party/vulkan-loader/tests/framework/icd/ |
H A D | test_icd.cpp | 185 VkInstance* pInstance) { 204 *pInstance = icd.instance_handle.handle; 1605 const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) { 1606 return test_vkCreateInstance(pCreateInfo, pAllocator, pInstance);
|
/third_party/vulkan-loader/loader/generated/ |
H A D | vk_loader_extensions.h | 92 VkInstance* pInstance);
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_device.c | 173 VkInstance *pInstance) in panvk_CreateInstance() 213 *pInstance = panvk_instance_to_handle(instance); in panvk_CreateInstance() 171 panvk_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) panvk_CreateInstance() argument
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_device.c | 158 VkInstance *pInstance) in pvr_CreateInstance() 200 *pInstance = pvr_instance_to_handle(instance); in pvr_CreateInstance() 156 pvr_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) pvr_CreateInstance() argument
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_device.c | 397 VkInstance* pInstance) in lvp_CreateInstance() 434 *pInstance = lvp_instance_to_handle(instance); in lvp_CreateInstance() 394 lvp_CreateInstance( const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) lvp_CreateInstance() argument
|
/third_party/mesa3d/src/vulkan/overlay-layer/ |
H A D | overlay.cpp | 2575 VkInstance* pInstance) in overlay_CreateInstance() 2592 VkResult result = fpCreateInstance(pCreateInfo, pAllocator, pInstance); in overlay_CreateInstance() 2595 struct instance_data *instance_data = new_instance_data(*pInstance); in overlay_CreateInstance() 2572 overlay_CreateInstance( const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) overlay_CreateInstance() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | libVulkan.cpp | 506 VKAPI_ATTR VkResult VKAPI_CALL vkCreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) in vkCreateInstance() argument 508 TRACE("(const VkInstanceCreateInfo* pCreateInfo = %p, const VkAllocationCallbacks* pAllocator = %p, VkInstance* pInstance = %p)", in vkCreateInstance() 509 pCreateInfo, pAllocator, pInstance); in vkCreateInstance() 561 *pInstance = VK_NULL_HANDLE; in vkCreateInstance() 571 result = vk::DispatchableInstance::Create(pAllocator, pCreateInfo, pInstance, physicalDevice, vk::Cast(messenger)); in vkCreateInstance()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_device.c | 404 VkInstance *pInstance) in tu_CreateInstance() 455 *pInstance = tu_instance_to_handle(instance); in tu_CreateInstance() 402 tu_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) tu_CreateInstance() argument
|
/third_party/mesa3d/src/broadcom/vulkan/ |
H A D | v3dv_device.c | 202 VkInstance *pInstance) in v3dv_CreateInstance() 267 *pInstance = v3dv_instance_to_handle(instance); in v3dv_CreateInstance() 200 v3dv_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) v3dv_CreateInstance() argument
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_device.c | 251 VkInstance *pInstance) in dzn_CreateInstance() 253 return dzn_instance_create(pCreateInfo, pAllocator, pInstance); in dzn_CreateInstance() 249 dzn_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) dzn_CreateInstance() argument
|
/third_party/vulkan-loader/loader/ |
H A D | trampoline.c | 529 const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) { in vkCreateInstance() 545 if (pInstance == NULL) { in vkCreateInstance() 547 "vkCreateInstance \'pInstance\' not valid (VUID-vkCreateInstance-pInstance-parameter)"); in vkCreateInstance() 740 // The clearing should actually be handled by the overall memset of the pInstance structure above. in vkCreateInstance() 745 *pInstance = (VkInstance)ptr_instance; in vkCreateInstance() 528 vkCreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) vkCreateInstance() argument
|
H A D | loader.c | 5286 const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) { 5294 struct loader_instance *ptr_instance = (struct loader_instance *)*pInstance; 5605 // The clearing should actually be handled by the overall memset of the pInstance structure in the
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_device.c | 1106 VkInstance* pInstance) in anv_CreateInstance() 1143 *pInstance = anv_instance_to_handle(instance); in anv_CreateInstance() 1103 anv_CreateInstance( const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance) anv_CreateInstance() argument
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_device.c | 1102 const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) in radv_CreateInstance() 1139 *pInstance = radv_instance_to_handle(instance); in radv_CreateInstance() 1101 radv_CreateInstance(const VkInstanceCreateInfo *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkInstance *pInstance) radv_CreateInstance() argument
|
/third_party/vk-gl-cts/external/vulkancts/scripts/src/ |
H A D | vulkan_sc_core.h | 2619 typedef VkResult (VKAPI_PTR *PFN_vkCreateInstance)(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance); 2750 VkInstance* pInstance);
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
H A D | vulkan.hpp | 1417 VkInstance * pInstance ) const VULKAN_HPP_NOEXCEPT 1419 return ::vkCreateInstance( pCreateInfo, pAllocator, pInstance );
|
/third_party/skia/include/third_party/vulkan/vulkan/ |
H A D | vulkan_core.h | 3418 typedef VkResult (VKAPI_PTR *PFN_vkCreateInstance)(const VkInstanceCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, VkInstance* pInstance); 3560 VkInstance* pInstance);
|