17 lines
481 B
C
17 lines
481 B
C
/* SPDX-FileCopyrightText: 2021-2022 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
enum {
|
|
Kernel_DummyConstant,
|
|
#define KERNEL_STRUCT_MEMBER(parent, type, name) KernelData_##parent##_##name,
|
|
#include "kernel/data_template.h"
|
|
};
|
|
|
|
#ifdef __KERNEL_METAL__
|
|
# define KERNEL_STRUCT_MEMBER(parent, type, name) \
|
|
constant type kernel_data_##parent##_##name \
|
|
[[function_constant(KernelData_##parent##_##name)]];
|
|
# include "kernel/data_template.h"
|
|
#endif
|