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:
Diffstat (limited to 'source/blender/compositor/intern/COM_WorkScheduler.h')
-rw-r--r--source/blender/compositor/intern/COM_WorkScheduler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/intern/COM_WorkScheduler.h b/source/blender/compositor/intern/COM_WorkScheduler.h
index 0befa209e47..0de1763749e 100644
--- a/source/blender/compositor/intern/COM_WorkScheduler.h
+++ b/source/blender/compositor/intern/COM_WorkScheduler.h
@@ -59,13 +59,13 @@ class WorkScheduler {
* @brief main thread loop for cpudevices
* inside this loop new work is queried and being executed
*/
- static void* thread_execute_cpu(void* data);
+ static void *thread_execute_cpu(void *data);
/**
* @brief main thread loop for gpudevices
* inside this loop new work is queried and being executed
*/
- static void* thread_execute_gpu(void* data);
+ static void *thread_execute_gpu(void *data);
#endif
public:
/**
@@ -77,7 +77,7 @@ public:
* @param group the execution group
* @param chunkNumber the number of the chunk in the group to be executed
*/
- static void schedule(ExecutionGroup* group, int chunkNumber);
+ static void schedule(ExecutionGroup *group, int chunkNumber);
/**
* @brief initialize the WorkScheduler