16 lines
464 B
C
16 lines
464 B
C
/* SPDX-License-Identifier: Apache-2.0
|
|
* Copyright 2021-2022 Blender Foundation */
|
|
|
|
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
|