• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2024 Collabora Ltd.
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef PANVK_CMD_OQ_H
7 #define PANVK_CMD_OQ_H
8 
9 #ifndef PAN_ARCH
10 #error "PAN_ARCH must be defined"
11 #endif
12 
13 #include "genxml/gen_macros.h"
14 
15 struct panvk_occlusion_query_state {
16 #if PAN_ARCH >= 10
17    uint64_t syncobj;
18 #endif
19    uint64_t ptr;
20    enum mali_occlusion_mode mode;
21 };
22 
23 #endif