Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_transform.h
| Show All 15 Lines | |||||
| #ifndef __UTIL_TRANSFORM_H__ | #ifndef __UTIL_TRANSFORM_H__ | ||||
| #define __UTIL_TRANSFORM_H__ | #define __UTIL_TRANSFORM_H__ | ||||
| #ifndef __KERNEL_GPU__ | #ifndef __KERNEL_GPU__ | ||||
| #include <string.h> | #include <string.h> | ||||
| #endif | #endif | ||||
| #include "util_math.h" | #include "util/util_math.h" | ||||
| #include "util_types.h" | #include "util/util_types.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* Data Types */ | /* Data Types */ | ||||
| typedef struct Transform { | typedef struct Transform { | ||||
| float4 x, y, z, w; /* rows */ | float4 x, y, z, w; /* rows */ | ||||
| ▲ Show 20 Lines • Show All 535 Lines • Show Last 20 Lines | |||||