xref: /aosp_15_r20/external/mesa3d/src/gfxstream/guest/vulkan/gfxstream_vk_wsi_stub.cpp (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Copyright 2023 Google LLC
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #include "gfxstream_vk_entrypoints.h"
7 #include "gfxstream_vk_private.h"
8 
gfxstream_vk_wsi_init(struct gfxstream_vk_physical_device * physical_device)9 VkResult gfxstream_vk_wsi_init(struct gfxstream_vk_physical_device* physical_device) {
10     return VK_SUCCESS;
11 }
12 
gfxstream_vk_wsi_finish(struct gfxstream_vk_physical_device * physical_device)13 void gfxstream_vk_wsi_finish(struct gfxstream_vk_physical_device* physical_device) {}
14