19 lines
368 B
C++
19 lines
368 B
C++
#ifndef _LIVOX_GEN1_OPENCL_KERNELS_H
|
|
#define _LIVOX_GEN1_OPENCL_KERNELS_H
|
|
|
|
#include <cstdint>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// External symbols for collate kernel (unmangled, not namespaced)
|
|
extern const char collateKernelStart[];
|
|
extern const uint32_t collateKernelNBytes;
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // _LIVOX_GEN1_OPENCL_KERNELS_H
|