• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2022 Collabora Ltd. and Red Hat Inc.
3  * SPDX-License-Identifier: MIT
4  */
5 #ifndef NVK_WSI_H
6 #define NVK_WSI_H 1
7 
8 #include "nvk_physical_device.h"
9 
10 VkResult nvk_init_wsi(struct nvk_physical_device *pdev);
11 void nvk_finish_wsi(struct nvk_physical_device *pdev);
12 
13 #endif
14