• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2016 Red Hat.
3  * Copyright © 2016 Bas Nieuwenhuizen
4  * SPDX-License-Identifier: MIT
5  *
6  * based in part on anv driver which is:
7  * Copyright © 2015 Intel Corporation
8  */
9 
10 #ifndef TU_WSI_H
11 #define TU_WSI_H
12 
13 #include "tu_common.h"
14 
15 VkResult
16 tu_wsi_init(struct tu_physical_device *physical_device);
17 
18 void
19 tu_wsi_finish(struct tu_physical_device *physical_device);
20 
21 #endif /* TU_WSI_H */
22