2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2014-10-07 15:46:19 -05:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup gpu
|
2014-10-07 15:46:19 -05:00
|
|
|
*/
|
|
|
|
|
|
2015-02-16 21:19:12 +01:00
|
|
|
#pragma once
|
2014-10-07 15:46:19 -05:00
|
|
|
|
2020-07-25 18:10:43 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-07-15 12:44:35 +02:00
|
|
|
/* gpu_backend.cc */
|
|
|
|
|
|
|
|
|
|
void gpu_backend_delete_resources(void);
|
|
|
|
|
|
2019-09-27 22:42:57 +02:00
|
|
|
/* gpu_pbvh.c */
|
2022-04-04 13:17:03 +10:00
|
|
|
|
2019-09-27 22:42:57 +02:00
|
|
|
void gpu_pbvh_init(void);
|
|
|
|
|
void gpu_pbvh_exit(void);
|
|
|
|
|
|
2020-07-25 18:10:43 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|