• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2024 Valve Corporation
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef TU_ACCELERATION_STRUCT_H
7 #define TU_ACCELERATION_STRUCT_H
8 
9 #include "tu_common.h"
10 
11 VkResult tu_init_null_accel_struct(struct tu_device *device);
12 
13 extern const vk_acceleration_structure_build_ops tu_as_build_ops;
14 
15 #endif
16