2023-06-14 16:52:36 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2021-2022 Blender Foundation
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
2022-07-12 15:32:46 +02:00
|
|
|
|
|
|
|
|
enum {
|
2022-07-15 18:00:45 +02:00
|
|
|
Kernel_DummyConstant,
|
2022-07-12 15:32:46 +02:00
|
|
|
#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
|