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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-21 18:05:54 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-05-21 18:06:04 +0300
commit03ad013c0a804dfa66720cc89da610ffb8cd8343 (patch)
tree90439c08c202b6339fc47e3f7e36fe17fdab6da9 /source/blender/blenkernel/intern/particle_system.c
parent4ebb64697a715fde3232862d8f341a9ce67ba028 (diff)
Cleanup: remove unused function
Diffstat (limited to 'source/blender/blenkernel/intern/particle_system.c')
-rw-r--r--source/blender/blenkernel/intern/particle_system.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index 568b0d3531e..27722aab2d9 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -471,12 +471,6 @@ void psys_thread_context_init(ParticleThreadContext *ctx, ParticleSimulationData
ctx->ma = give_current_material(sim->ob, sim->psys->part->omat);
}
-
-BLI_INLINE int ceil_ii(int a, int b)
-{
- return (a + b - 1) / b;
-}
-
void psys_tasks_create(ParticleThreadContext *ctx,
int startpart,
int endpart,