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:
authorJeroen Bakker <jeroen@blender.org>2021-03-23 14:03:55 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-23 14:05:37 +0300
commit19da44f869c7c98904b235a3e1501d2165c021b3 (patch)
tree60c92844c155b068741fcf6318b29664652df7f2 /source/blender/compositor/intern/COM_WorkScheduler.cc
parent9fb5559a0fb55d8b009d0df38323798be6647a44 (diff)
Cleanup: remove internal functions from interface.
Diffstat (limited to 'source/blender/compositor/intern/COM_WorkScheduler.cc')
-rw-r--r--source/blender/compositor/intern/COM_WorkScheduler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/intern/COM_WorkScheduler.cc b/source/blender/compositor/intern/COM_WorkScheduler.cc
index 71f062ed5bf..5d3f232221f 100644
--- a/source/blender/compositor/intern/COM_WorkScheduler.cc
+++ b/source/blender/compositor/intern/COM_WorkScheduler.cc
@@ -74,7 +74,7 @@ static struct {
} g_work_scheduler;
#if COM_CURRENT_THREADING_MODEL == COM_TM_QUEUE
-void *WorkScheduler::thread_execute_cpu(void *data)
+static void *thread_execute_cpu(void *data)
{
CPUDevice *device = (CPUDevice *)data;
WorkPackage *work;
@@ -87,7 +87,7 @@ void *WorkScheduler::thread_execute_cpu(void *data)
return nullptr;
}
-void *WorkScheduler::thread_execute_gpu(void *data)
+static void *thread_execute_gpu(void *data)
{
Device *device = (Device *)data;
WorkPackage *work;