• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright © 2024 Intel Corporation
2  * SPDX-License-Identifier: MIT
3  */
4 
5 #ifndef ANV_BVH_BUILD_HELPERS_H
6 #define ANV_BVH_BUILD_HELPERS_H
7 
8 #include "vk_build_helpers.h"
9 #include "anv_bvh.h"
10 
11 TYPE(anv_accel_struct_header, 8);
12 TYPE(anv_quad_leaf_node, 4);
13 TYPE(anv_procedural_leaf_node, 4);
14 TYPE(anv_internal_node, 4);
15 TYPE(anv_instance_leaf, 8);
16 TYPE(anv_prim_leaf_desc, 4);
17 TYPE(child_data, 1);
18 TYPE(instance_leaf_part0, 8);
19 TYPE(instance_leaf_part1, 8);
20 
21 #endif
22