Cycles: Split vectorized types into separate files
The final goal to reach is to make vectorized types much easier to maintain and the previous design had following issues: - Having all types and methods implementation made the source file rather bloated and unfun to navigate in. - It was not possible to quickly glance available API for the type you are interested in. - Adding more vectorization types will bloat the file even more, making things even more tricky to follow.
This commit is contained in:
@@ -200,6 +200,32 @@ set(SRC_UTIL_HEADERS
|
||||
../util/util_transform.h
|
||||
../util/util_texture.h
|
||||
../util/util_types.h
|
||||
../util/util_types_float2.h
|
||||
../util/util_types_float2_impl.h
|
||||
../util/util_types_float3.h
|
||||
../util/util_types_float3_impl.h
|
||||
../util/util_types_float4.h
|
||||
../util/util_types_float4_impl.h
|
||||
../util/util_types_int2.h
|
||||
../util/util_types_int2_impl.h
|
||||
../util/util_types_int3.h
|
||||
../util/util_types_int3_impl.h
|
||||
../util/util_types_int4.h
|
||||
../util/util_types_int4_impl.h
|
||||
../util/util_types_uchar2.h
|
||||
../util/util_types_uchar2_impl.h
|
||||
../util/util_types_uchar3.h
|
||||
../util/util_types_uchar3_impl.h
|
||||
../util/util_types_uchar4.h
|
||||
../util/util_types_uchar4_impl.h
|
||||
../util/util_types_uint2.h
|
||||
../util/util_types_uint2_impl.h
|
||||
../util/util_types_uint3.h
|
||||
../util/util_types_uint3_impl.h
|
||||
../util/util_types_uint4.h
|
||||
../util/util_types_uint4_impl.h
|
||||
../util/util_types_vector3.h
|
||||
../util/util_types_vector3_impl.h
|
||||
)
|
||||
|
||||
set(SRC_SPLIT_HEADERS
|
||||
|
Reference in New Issue
Block a user