Cleanup: Remove WITH_COMPOSITOR_CPU option (compositor is always in)

Compositor is a required feature and parts of it have been always
included anyway. Remove WITH_COMPOSITOR_CPU build option.

Pull Request: https://projects.blender.org/blender/blender/pulls/131838
This commit is contained in:
Aras Pranckevicius
2024-12-13 14:54:19 +01:00
committed by Aras Pranckevicius
parent 654c1deb22
commit 7e7f4f0cee
13 changed files with 106 additions and 151 deletions

View File

@@ -196,10 +196,6 @@ if(WITH_CODEC_SNDFILE)
add_definitions(-DWITH_SNDFILE)
endif()
if(WITH_COMPOSITOR_CPU)
add_definitions(-DWITH_COMPOSITOR_CPU)
endif()
if(WITH_CYCLES)
list(APPEND INC
../../../../intern/cycles/blender

View File

@@ -103,11 +103,8 @@ static PyObject *make_builtopts_info()
SetObjIncref(Py_False);
#endif
#ifdef WITH_COMPOSITOR_CPU
/* Compositor. */
SetObjIncref(Py_True);
#else
SetObjIncref(Py_False);
#endif
#ifdef WITH_CYCLES
SetObjIncref(Py_True);