| /* |
| * Copyright © 2023 Google Inc. |
| * |
| * derived from panvk_private.h driver which is: |
| * Copyright © 2021 Collabora Ltd. |
| * Copyright © 2016 Red Hat. |
| * Copyright © 2016 Bas Nieuwenhuizen |
| * Copyright © 2015 Intel Corporation |
| * |
| * Permission is hereby granted, free of charge, to any person obtaining a |
| * copy of this software and associated documentation files (the "Software"), |
| * to deal in the Software without restriction, including without limitation |
| * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| * and/or sell copies of the Software, and to permit persons to whom the |
| * Software is furnished to do so, subject to the following conditions: |
| * |
| * The above copyright notice and this permission notice (including the next |
| * paragraph) shall be included in all copies or substantial portions of the |
| * Software. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| * DEALINGS IN THE SOFTWARE. |
| */ |
| |
| #ifndef GFXSTREAM_VK_PRIVATE_H |
| #define GFXSTREAM_VK_PRIVATE_H |
| |
| #include <assert.h> |
| #include <stdint.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <vulkan/vk_icd.h> |
| #include <vulkan/vulkan.h> |
| |
| #include <vector> |
| |
| #include "gfxstream_vk_entrypoints.h" |
| #include "vk_alloc.h" |
| #include "vk_buffer.h" |
| #include "vk_command_buffer.h" |
| #include "vk_command_pool.h" |
| #include "vk_device.h" |
| #include "vk_extensions.h" |
| #include "vk_fence.h" |
| #include "vk_image.h" |
| #include "vk_instance.h" |
| #include "vk_log.h" |
| #include "vk_object.h" |
| #include "vk_physical_device.h" |
| #include "vk_queue.h" |
| #include "vk_semaphore.h" |
| #include "vulkan/wsi/wsi_common.h" |
| |
| struct gfxstream_vk_instance { |
| struct vk_instance vk; |
| uint32_t api_version; |
| VkInstance internal_object; |
| }; |
| |
| struct gfxstream_vk_physical_device { |
| struct vk_physical_device vk; |
| |
| struct wsi_device wsi_device; |
| const struct vk_sync_type* sync_types[2]; |
| struct gfxstream_vk_instance* instance; |
| VkPhysicalDevice internal_object; |
| }; |
| |
| struct gfxstream_vk_device { |
| struct vk_device vk; |
| |
| struct vk_device_dispatch_table cmd_dispatch; |
| struct gfxstream_vk_physical_device* physical_device; |
| VkDevice internal_object; |
| }; |
| |
| struct gfxstream_vk_queue { |
| struct vk_queue vk; |
| struct gfxstream_vk_device* device; |
| VkQueue internal_object; |
| }; |
| |
| struct gfxstream_vk_buffer { |
| struct vk_buffer vk; |
| VkBuffer internal_object; |
| }; |
| |
| struct gfxstream_vk_command_pool { |
| struct vk_command_pool vk; |
| VkCommandPool internal_object; |
| }; |
| |
| struct gfxstream_vk_command_buffer { |
| struct vk_command_buffer vk; |
| VkCommandBuffer internal_object; |
| }; |
| |
| struct gfxstream_vk_fence { |
| struct vk_fence vk; |
| VkFence internal_object; |
| }; |
| |
| struct gfxstream_vk_semaphore { |
| struct vk_semaphore vk; |
| VkSemaphore internal_object; |
| }; |
| |
| VK_DEFINE_HANDLE_CASTS(gfxstream_vk_command_buffer, vk.base, VkCommandBuffer, |
| VK_OBJECT_TYPE_COMMAND_BUFFER) |
| VK_DEFINE_HANDLE_CASTS(gfxstream_vk_device, vk.base, VkDevice, VK_OBJECT_TYPE_DEVICE) |
| VK_DEFINE_HANDLE_CASTS(gfxstream_vk_instance, vk.base, VkInstance, VK_OBJECT_TYPE_INSTANCE) |
| VK_DEFINE_HANDLE_CASTS(gfxstream_vk_physical_device, vk.base, VkPhysicalDevice, |
| VK_OBJECT_TYPE_PHYSICAL_DEVICE) |
| VK_DEFINE_HANDLE_CASTS(gfxstream_vk_queue, vk.base, VkQueue, VK_OBJECT_TYPE_QUEUE) |
| |
| VK_DEFINE_NONDISP_HANDLE_CASTS(gfxstream_vk_command_pool, vk.base, VkCommandPool, |
| VK_OBJECT_TYPE_COMMAND_POOL) |
| VK_DEFINE_NONDISP_HANDLE_CASTS(gfxstream_vk_buffer, vk.base, VkBuffer, VK_OBJECT_TYPE_BUFFER) |
| VK_DEFINE_NONDISP_HANDLE_CASTS(gfxstream_vk_fence, vk.base, VkFence, VK_OBJECT_TYPE_FENCE) |
| VK_DEFINE_NONDISP_HANDLE_CASTS(gfxstream_vk_semaphore, vk.base, VkSemaphore, |
| VK_OBJECT_TYPE_SEMAPHORE) |
| |
| VkResult gfxstream_vk_wsi_init(struct gfxstream_vk_physical_device* physical_device); |
| |
| void gfxstream_vk_wsi_finish(struct gfxstream_vk_physical_device* physical_device); |
| |
| std::vector<VkSemaphore> transformVkSemaphoreList(const VkSemaphore* pSemaphores, |
| uint32_t semaphoreCount); |
| |
| std::vector<VkFence> transformVkFenceList(const VkFence* pFences, uint32_t fenceCount); |
| |
| std::vector<VkSemaphoreSubmitInfo> transformVkSemaphoreSubmitInfoList( |
| const VkSemaphoreSubmitInfo* pSemaphoreSubmitInfos, uint32_t semaphoreSubmitInfoCount); |
| |
| #endif /* GFXSTREAM_VK_PRIVATE_H */ |