Cleanup: trailing space for compositor

This commit is contained in:
2018-06-17 17:05:29 +02:00
parent 410880552b
commit a262ea8c47
237 changed files with 1297 additions and 1297 deletions

View File

@@ -85,7 +85,7 @@ void *WorkScheduler::thread_execute_cpu(void *data)
device->execute(work);
delete work;
}
return NULL;
}
@@ -93,12 +93,12 @@ void *WorkScheduler::thread_execute_gpu(void *data)
{
Device *device = (Device *)data;
WorkPackage *work;
while ((work = (WorkPackage *)BLI_thread_queue_pop(g_gpuqueue))) {
device->execute(work);
delete work;
}
return NULL;
}
#endif