Add blank lines after file references to avoid them being interpreted as doc-strings the following declarations.
21 lines
233 B
C++
21 lines
233 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* gpu_pbvh.c */
|
|
|
|
void gpu_pbvh_init(void);
|
|
void gpu_pbvh_exit(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|