Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-02-13 20:58:34 +0300
committerJacques Lucke <jacques@blender.org>2020-02-13 20:58:34 +0300
commit1df94f6257820a2aec8b94f9566357ed83d56fa7 (patch)
tree775367528a55278d36f314bd6ab63a7d1994b0cc /source/blender/simulations
parent9564cd045aa8985a33f49adfd57fe1dc0d4dbf0e (diff)
remove obselete BLI_math_cxx.h file
Diffstat (limited to 'source/blender/simulations')
-rw-r--r--source/blender/simulations/bparticles/actions.cpp2
-rw-r--r--source/blender/simulations/bparticles/c_wrapper.cpp1
-rw-r--r--source/blender/simulations/bparticles/node_frontend.cpp1
-rw-r--r--source/blender/simulations/bparticles/offset_handlers.cpp1
-rw-r--r--source/blender/simulations/bparticles/world_state.hpp3
5 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/simulations/bparticles/actions.cpp b/source/blender/simulations/bparticles/actions.cpp
index d1776c9de6a..9e9bb8f3f79 100644
--- a/source/blender/simulations/bparticles/actions.cpp
+++ b/source/blender/simulations/bparticles/actions.cpp
@@ -4,8 +4,6 @@
namespace BParticles {
-using BLI::rgba_f;
-
void ActionSequence::execute(ParticleActionContext &context)
{
for (auto &action : m_actions) {
diff --git a/source/blender/simulations/bparticles/c_wrapper.cpp b/source/blender/simulations/bparticles/c_wrapper.cpp
index 49790f0b6ea..6e4062946dd 100644
--- a/source/blender/simulations/bparticles/c_wrapper.cpp
+++ b/source/blender/simulations/bparticles/c_wrapper.cpp
@@ -7,6 +7,7 @@
#include "BLI_timeit.h"
#include "BLI_string.h"
#include "BLI_parallel.h"
+#include "BLI_color.h"
#include "BKE_mesh.h"
#include "BKE_customdata.h"
diff --git a/source/blender/simulations/bparticles/node_frontend.cpp b/source/blender/simulations/bparticles/node_frontend.cpp
index ca139382527..bc49df5e0c4 100644
--- a/source/blender/simulations/bparticles/node_frontend.cpp
+++ b/source/blender/simulations/bparticles/node_frontend.cpp
@@ -8,6 +8,7 @@
#include "BLI_timeit.h"
#include "BLI_multi_map.h"
#include "BLI_set.h"
+#include "BLI_color.h"
#include "FN_node_tree.h"
#include "FN_multi_functions.h"
diff --git a/source/blender/simulations/bparticles/offset_handlers.cpp b/source/blender/simulations/bparticles/offset_handlers.cpp
index 0bea3cd4b7e..3d66afa63b4 100644
--- a/source/blender/simulations/bparticles/offset_handlers.cpp
+++ b/source/blender/simulations/bparticles/offset_handlers.cpp
@@ -1,4 +1,5 @@
#include "offset_handlers.hpp"
+#include "BLI_color.h"
namespace BParticles {
diff --git a/source/blender/simulations/bparticles/world_state.hpp b/source/blender/simulations/bparticles/world_state.hpp
index 6de009e2b6f..062eaf8402e 100644
--- a/source/blender/simulations/bparticles/world_state.hpp
+++ b/source/blender/simulations/bparticles/world_state.hpp
@@ -1,9 +1,10 @@
#pragma once
-#include "BLI_math_cxx.h"
#include "BLI_map.h"
#include "BLI_string_ref.h"
#include "BLI_string_map.h"
+#include "BLI_float3.h"
+#include "BLI_float4x4.h"
namespace BParticles {