Fix: use color_srgb_to_linear_v4 in attribute_convert.h #115098

Merged
Brecht Van Lommel merged 2 commits from lmarz/blender:arm64_color_srgb_to_linear into main 2023-11-22 19:46:05 +01:00
Contributor

This fixes a build issue when compiling on arm64 (aarch64) without sse2neon, since color_srgb_to_linear(float4) only exists, if __KERNEL_SSE2__ is defined in intern/cycles/util/color.h.

The build error
ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing  -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/curves.cpp
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/curves.cpp:7:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)':
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float'
 69 |     return color_srgb_to_linear(make_float4(byte_to_float(value[0]),
    |                                 ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
    |                                            |
    |                                            ccl::float4
 70 |                                             byte_to_float(value[1]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 71 |                                             byte_to_float(value[2]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 72 |                                             byte_to_float(value[3])));
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note:   initializing argument 1 of 'float ccl::color_srgb_to_linear(float)'
 62 | ccl_device float color_srgb_to_linear(float c)
    |                                       ~~~~~~^
ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing  -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/pointcloud.cpp
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/pointcloud.cpp:11:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)':
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float'
 69 |     return color_srgb_to_linear(make_float4(byte_to_float(value[0]),
    |                                 ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
    |                                            |
    |                                            ccl::float4
 70 |                                             byte_to_float(value[1]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 71 |                                             byte_to_float(value[2]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 72 |                                             byte_to_float(value[3])));
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note:   initializing argument 1 of 'float ccl::color_srgb_to_linear(float)'
 62 | ccl_device float color_srgb_to_linear(float c)
    |                                       ~~~~~~^
ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing  -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/mesh.cpp
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/mesh.cpp:7:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)':
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float'
 69 |     return color_srgb_to_linear(make_float4(byte_to_float(value[0]),
    |                                 ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
    |                                            |
    |                                            ccl::float4
 70 |                                             byte_to_float(value[1]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 71 |                                             byte_to_float(value[2]),
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
 72 |                                             byte_to_float(value[3])));
    |                                             ~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9:
/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note:   initializing argument 1 of 'float ccl::color_srgb_to_linear(float)'
 62 | ccl_device float color_srgb_to_linear(float c)
    |                                       ~~~~~~^

To fix this we simply change the function to color_srgb_to_linear_v4(float4), which should have the same functionality and is available for non sse2 builds, but also supports sse2 intrinsics.

This fixes a build issue when compiling on arm64 (aarch64) without sse2neon, since `color_srgb_to_linear(float4)` only exists, if `__KERNEL_SSE2__` is defined in [intern/cycles/util/color.h](https://projects.blender.org/blender/blender/src/commit/c845233d1c74a0ea4295b050b44209a53abc2053/intern/cycles/util/color.h#L299). <details> <summary>The build error</summary> ``` ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/curves.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/curves.cpp In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/curves.cpp:7: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)': /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float' 69 | return color_srgb_to_linear(make_float4(byte_to_float(value[0]), | ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ | | | ccl::float4 70 | byte_to_float(value[1]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 71 | byte_to_float(value[2]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 72 | byte_to_float(value[3]))); | ~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note: initializing argument 1 of 'float ccl::color_srgb_to_linear(float)' 62 | ccl_device float color_srgb_to_linear(float c) | ~~~~~~^ ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/pointcloud.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/pointcloud.cpp In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/pointcloud.cpp:11: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)': /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float' 69 | return color_srgb_to_linear(make_float4(byte_to_float(value[0]), | ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ | | | ccl::float4 70 | byte_to_float(value[1]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 71 | byte_to_float(value[2]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 72 | byte_to_float(value[3]))); | ~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note: initializing argument 1 of 'float ccl::color_srgb_to_linear(float)' 62 | ccl_device float color_srgb_to_linear(float c) | ~~~~~~^ ninja: job failed: /usr/bin/g++ -DBOOST_ALL_NO_LIB -DBOOST_ATOMIC_DYN_LINK -DBOOST_ATOMIC_NO_LIB -DBOOST_CHRONO_DYN_LINK -DBOOST_CHRONO_NO_LIB -DBOOST_DATE_TIME_DYN_LINK -DBOOST_DATE_TIME_NO_LIB -DBOOST_FILESYSTEM_DYN_LINK -DBOOST_FILESYSTEM_NO_LIB -DBOOST_IOSTREAMS_DYN_LINK -DBOOST_IOSTREAMS_NO_LIB -DBOOST_LOCALE_DYN_LINK -DBOOST_LOCALE_NO_LIB -DBOOST_REGEX_DYN_LINK -DBOOST_REGEX_NO_LIB -DBOOST_SYSTEM_DYN_LINK -DBOOST_SYSTEM_NO_LIB -DBOOST_THREAD_DYN_LINK -DBOOST_THREAD_NO_LIB -DBOOST_WAVE_DYN_LINK -DBOOST_WAVE_NO_LIB -DCCL_NAMESPACE_BEGIN="namespace ccl {" -DCCL_NAMESPACE_END=} -DCYCLES_GFLAGS_NAMESPACE=gflags -DEMBREE_MAJOR_VERSION=4 -DNDEBUG -DOSL_STATIC_BUILD -DOSL_STATIC_LIBRARY -DPATH_GUIDING_LEVEL=5 -DTBB_SUPPRESS_DEPRECATED_MESSAGES=1 -DWITH_ALEMBIC -DWITH_ASSERT_ABORT -DWITH_BLENDER_GUARDEDALLOC -DWITH_CUDA -DWITH_CUDA_DYNLOAD -DWITH_CYCLES_LOGGING -DWITH_EMBREE -DWITH_FLUID -DWITH_HIP -DWITH_HIP_DYNLOAD -DWITH_NANOVDB -DWITH_OCIO -DWITH_OPENSUBDIV -DWITH_OPENVDB -DWITH_OPENVDB_BLOSC -DWITH_OSL -DWITH_PATH_GUIDING -DWITH_SYSTEM_PUGIXML -DWITH_TBB -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE -D_LARGEFILE_SOURCE -D__LITTLE_ENDIAN__ -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/cuew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../../extern/hipew/include -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/../atomic -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesrna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenkernel -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/gpu -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/render -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesrna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/blenlib -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/source/blender/makesdna -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/source/blender/makesdna/intern -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/guardedalloc -I/builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/mikktspace/. -isystem /usr/include/OpenEXR -isystem /usr/include/Imath -isystem /builds/lmarz/aports/community/blender/src/blender-4.0.0/extern/gflags/src -isystem /usr/include/python3.11 -Wuninitialized -Wredundant-decls -Wall -Wno-invalid-offsetof -Wno-sign-compare -Wlogical-op -Winit-self -Wmissing-include-dirs -Wno-div-by-zero -Wtype-limits -Werror=return-type -Wno-char-subscripts -Wno-unknown-pragmas -Wpointer-arith -Wunused-parameter -Wwrite-strings -Wundef -Wcomma-subscript -Wformat-signedness -Wrestrict -Wno-suggest-override -Wuninitialized -Wno-stringop-overread -Wno-stringop-overflow -Wimplicit-fallthrough=5 -Wundef -Wmissing-declarations -Os -fstack-clash-protection -Wformat -Werror=format-security -D_GLIBCXX_ASSERTIONS=1 -D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS=1 -D_LIBCPP_ENABLE_HARDENED_MODE=1 -fopenmp -pipe -fPIC -funsigned-char -fno-strict-aliasing -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/"="" -fmacro-prefix-map="/builds/lmarz/aports/community/blender/src/blender-4.0.0/build-headless/"="" -fno-trapping-math -fno-math-errno -fno-signed-zeros -fno-signaling-nans -fno-rounding-math -Wno-error=unused-macros -Wno-maybe-uninitialized -O2 -DNDEBUG -std=c++17 -MD -MT intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o -MF intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o.d -o intern/cycles/blender/CMakeFiles/bf_intern_cycles.dir/mesh.cpp.o -c /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/mesh.cpp In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/mesh.cpp:7: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h: In static member function 'static ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::CyclesT ccl::AttributeConverter<blender::ColorSceneLinearByteEncoded4b<blender::eAlpha::Premultiplied> >::convert(const blender::ColorGeometry4b&)': /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:69:44: error: cannot convert 'ccl::float4' to 'float' 69 | return color_srgb_to_linear(make_float4(byte_to_float(value[0]), | ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ | | | ccl::float4 70 | byte_to_float(value[1]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 71 | byte_to_float(value[2]), | ~~~~~~~~~~~~~~~~~~~~~~~~ 72 | byte_to_float(value[3]))); | ~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/blender/attribute_convert.h:9: /builds/lmarz/aports/community/blender/src/blender-4.0.0/intern/cycles/util/color.h:62:45: note: initializing argument 1 of 'float ccl::color_srgb_to_linear(float)' 62 | ccl_device float color_srgb_to_linear(float c) | ~~~~~~^ ``` </details> To fix this we simply change the function to `color_srgb_to_linear_v4(float4)`, which should have the same functionality and is available for non sse2 builds, but also supports sse2 intrinsics.
Iliya Katushenock added this to the Render & Cycles project 2023-11-18 15:38:28 +01:00
Iliya Katushenock added the
Interest
Platforms, Builds & Tests
label 2023-11-18 15:38:44 +01:00
Brecht Van Lommel approved these changes 2023-11-22 19:42:55 +01:00
Brecht Van Lommel force-pushed arm64_color_srgb_to_linear from 088a2ee9ee to 67bc11c859 2023-11-22 19:45:21 +01:00 Compare
Brecht Van Lommel merged commit b9227da2db into main 2023-11-22 19:46:05 +01:00

This has been backported to the 4.0 branch as well.

This has been backported to the 4.0 branch as well.
lmarz deleted branch arm64_color_srgb_to_linear 2023-11-22 20:27:30 +01:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#115098
No description provided.