Refactor: Makesrna: move generated code further in C++.
This commit moves generated `RNA_blender.h`, `RNA_prototype.h` and `RNA_blender_cpp.h` headers to become C++ header files. It also removes the now useless `RNA_EXTERN_C` defines, and just directly use the `extern` keyword. We do not need anymore `extern "C"` declarations here. Pull Request: https://projects.blender.org/blender/blender/pulls/124469
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
#include "device/device.h"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
|
||||
#include "session/display_driver.h"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#ifndef __BLENDER_IMAGE_H__
|
||||
#define __BLENDER_IMAGE_H__
|
||||
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
|
||||
#include "scene/image.h"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include <cstdint>
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
|
||||
CCL_NAMESPACE_BEGIN
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
|
||||
#include "session/output_driver.h"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
|
||||
#include "device/device.h"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_blender_cpp.h"
|
||||
#include "RNA_blender_cpp.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
#include "scene/film.h"
|
||||
|
||||
@@ -12,7 +12,7 @@ set(INC
|
||||
../makesrna
|
||||
../windowmanager
|
||||
../../../extern/fmtlib/include
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_keyframing.hh"
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
#include "DNA_object_types.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLI_math_base.h"
|
||||
#include "BLI_string_utf8.h"
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_types.hh"
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_keyframing.hh"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "DNA_object_types.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLI_listbase.h"
|
||||
#include "BLI_string.h"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "DNA_rigidbody_types.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
namespace blender::animrig {
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ set(INC
|
||||
../../../intern/mikktspace
|
||||
../../../intern/opensubdiv
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -829,7 +829,7 @@ endif()
|
||||
|
||||
blender_add_lib(bf_blenkernel "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_blenkernel bf_rna)
|
||||
|
||||
|
||||
@@ -863,7 +863,7 @@ if(WITH_GTESTS)
|
||||
)
|
||||
set(TEST_LIB
|
||||
${LIB}
|
||||
bf_rna # RNA_prototypes.h
|
||||
bf_rna # RNA_prototypes.hh
|
||||
)
|
||||
blender_add_test_suite_lib(blenkernel "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${TEST_LIB}")
|
||||
endif()
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLO_read_write.hh"
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLO_read_write.hh"
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
static ListBase callback_slots[BKE_CB_EVT_TOT] = {{nullptr}};
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
#include "RE_engine.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "CLG_log.h"
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "atomic_ops.h"
|
||||
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLO_read_write.hh"
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
#include "CLG_log.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
namespace blender::bke::tests {
|
||||
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
#include "atomic_ops.h"
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
#include "BLO_read_write.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "nla_private.h"
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "NOD_common.h"
|
||||
#include "NOD_composite.hh"
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
#include "NOD_geometry_nodes_log.hh"
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "MOD_nodes.hh"
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
#include "IMB_imbuf_types.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "libmv-capi.h"
|
||||
#include "tracking_private.h"
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#include "BKE_movieclip.h"
|
||||
#include "BKE_tracking.h"
|
||||
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "libmv-capi.h"
|
||||
#include "tracking_private.h"
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
#include "DNA_movieclip_types.h"
|
||||
#include "DNA_scene_types.h"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLI_ghash.h"
|
||||
#include "BLI_listbase.h"
|
||||
|
||||
@@ -17,7 +17,7 @@ set(INC
|
||||
../sequencer
|
||||
../windowmanager
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -96,7 +96,7 @@ endif()
|
||||
|
||||
blender_add_lib(bf_blenloader "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_blenloader bf_rna)
|
||||
|
||||
if(WITH_GTESTS)
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLO_readfile.hh"
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ if(WITH_COMPOSITOR_CPU)
|
||||
../render
|
||||
../render/intern
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -638,7 +638,7 @@ if(WITH_COMPOSITOR_CPU)
|
||||
blender_add_test_suite_lib(compositor "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
|
||||
endif()
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_compositor bf_rna)
|
||||
|
||||
# End WITH_COMPOSITOR_CPU.
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#include "BKE_node.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "COM_Node.h" /* own include */
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ set(INC
|
||||
../modifiers
|
||||
../sequencer
|
||||
../windowmanager
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -187,7 +187,7 @@ endif()
|
||||
blender_add_lib(bf_depsgraph "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
add_library(bf::depsgraph ALIAS bf_depsgraph)
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_depsgraph bf_rna)
|
||||
|
||||
if(WITH_GTESTS)
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include "BKE_collection.hh"
|
||||
#include "BKE_lib_id.hh"
|
||||
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "intern/builder/deg_builder_cache.h"
|
||||
#include "intern/builder/deg_builder_remove_noop.h"
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
#include "DEG_depsgraph.hh"
|
||||
|
||||
@@ -89,7 +89,7 @@
|
||||
#include "BKE_world.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
#include "RNA_types.hh"
|
||||
|
||||
#include "ANIM_action.hh"
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "BKE_constraint.h"
|
||||
#include "BKE_lib_query.hh"
|
||||
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "DEG_depsgraph.hh"
|
||||
#include "DEG_depsgraph_build.hh"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
#include "BKE_constraint.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "intern/builder/deg_builder.h"
|
||||
#include "intern/depsgraph.hh"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "DEG_depsgraph.hh"
|
||||
#include "DEG_depsgraph_query.hh"
|
||||
|
||||
@@ -11,7 +11,7 @@ set(INC
|
||||
../../sequencer
|
||||
../../windowmanager
|
||||
../../../../extern/fmtlib/include
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -61,7 +61,7 @@ endif()
|
||||
|
||||
blender_add_lib(bf_editor_animation "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_animation bf_rna)
|
||||
|
||||
if(WITH_GTESTS)
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BKE_anim_data.hh"
|
||||
#include "BKE_animsys.h"
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_anim_api.hh"
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ANIM_fcurve.hh"
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
#include "WM_types.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_resources.hh"
|
||||
|
||||
@@ -62,7 +62,7 @@
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "anim_intern.hh"
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "BLI_timecode.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
void ED_time_scrub_region_rect_get(const ARegion *region, rcti *rect)
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@ set(INC
|
||||
../../makesrna
|
||||
../../windowmanager
|
||||
../../../../intern/eigen
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -56,5 +56,5 @@ set(LIB
|
||||
|
||||
blender_add_lib(bf_editor_armature "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_armature bf_rna)
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface_icons.hh"
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -13,7 +13,7 @@ set(INC
|
||||
../../windowmanager
|
||||
# dna_type_offsets.h
|
||||
${CMAKE_CURRENT_BINARY_DIR}/../../makesdna/intern
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -66,5 +66,5 @@ set(LIB
|
||||
|
||||
blender_add_lib(bf_editor_asset "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_asset bf_rna)
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
#include "BLI_string_utils.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_asset_catalog.hh"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
|
||||
#include "UI_interface_icons.hh"
|
||||
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_asset_list.hh"
|
||||
#include "ED_asset_mark_clear.hh"
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_asset_list.hh"
|
||||
#include "ED_asset_menu_utils.hh"
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
#include "ED_screen.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_resources.hh"
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
#include "UI_interface.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
#include "ED_asset_list.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_tree_view.hh"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "ED_asset_shelf.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ set(INC
|
||||
../../gpu
|
||||
../../makesrna
|
||||
../../windowmanager
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -55,5 +55,5 @@ endif()
|
||||
|
||||
blender_add_lib(bf_editor_curve "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_curve bf_rna)
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "RNA_enum_types.hh"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ set(INC
|
||||
../../makesrna
|
||||
../../windowmanager
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
extern "C" {
|
||||
#include "curve_fit_nd.h"
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_resources.hh"
|
||||
|
||||
@@ -13,7 +13,7 @@ set(INC
|
||||
../../nodes
|
||||
../../windowmanager
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -41,5 +41,5 @@ set(LIB
|
||||
|
||||
blender_add_lib(bf_editor_geometry "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h dna_type_offsets.h
|
||||
# RNA_prototypes.hh dna_type_offsets.h
|
||||
add_dependencies(bf_editor_geometry bf_rna)
|
||||
|
||||
@@ -11,7 +11,7 @@ set(INC
|
||||
../../makesrna
|
||||
../../windowmanager
|
||||
../../../../intern/eigen
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -49,5 +49,5 @@ set(LIB
|
||||
|
||||
blender_add_lib(bf_editor_gizmo_library "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_gizmo_library bf_rna)
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ set(INC
|
||||
../../imbuf
|
||||
../../makesrna
|
||||
../../windowmanager
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -81,5 +81,5 @@ endif()
|
||||
|
||||
blender_add_lib(bf_editor_gpencil_legacy "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_gpencil_legacy bf_rna)
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_gpencil_legacy.hh"
|
||||
#include "ED_screen.hh"
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_view2d.hh"
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_resources.hh"
|
||||
#include "UI_view2d.hh"
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_view2d.hh"
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_view2d.hh"
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ set(INC
|
||||
../../../../extern/curve_fit_nd
|
||||
../../geometry
|
||||
../sculpt_paint
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ set(INC
|
||||
../../windowmanager
|
||||
../../../../intern/ghost
|
||||
../../bmesh
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
${CMAKE_BINARY_DIR}/source/blender/makesrna
|
||||
)
|
||||
|
||||
@@ -128,7 +128,7 @@ endif()
|
||||
|
||||
blender_add_lib(bf_editor_interface "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
|
||||
# RNA_prototypes.h
|
||||
# RNA_prototypes.hh
|
||||
add_dependencies(bf_editor_interface bf_rna)
|
||||
|
||||
if(WITH_GTESTS)
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
#include "BKE_context.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#ifdef WITH_PYTHON
|
||||
# include "BPY_extern.h"
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_resources.hh"
|
||||
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
namespace blender::ui {
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@
|
||||
#include "interface_intern.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#include "DNA_space_types.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BKE_context.hh"
|
||||
#include "BKE_global.hh"
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
#include "BKE_screen.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_abstract_view.hh"
|
||||
#include "UI_interface.hh"
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#include "DNA_anim_types.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "BLI_listbase.h"
|
||||
#include "BLI_string.h"
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_path.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_interface_c.hh"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@
|
||||
#include "UI_tree_view.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_armature.hh"
|
||||
#include "ED_undo.hh"
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@
|
||||
#include "UI_tree_view.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "ED_undo.hh"
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "BKE_light_linking.h"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_prototypes.h"
|
||||
#include "RNA_prototypes.hh"
|
||||
|
||||
#include "UI_interface.hh"
|
||||
#include "UI_resources.hh"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user