summaryrefslogtreecommitdiff
path: root/thirdparty/embree/common/tasking/taskscheduler.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/embree/common/tasking/taskscheduler.h')
-rw-r--r--thirdparty/embree/common/tasking/taskscheduler.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/thirdparty/embree/common/tasking/taskscheduler.h b/thirdparty/embree/common/tasking/taskscheduler.h
new file mode 100644
index 0000000000..8f3dd87689
--- /dev/null
+++ b/thirdparty/embree/common/tasking/taskscheduler.h
@@ -0,0 +1,15 @@
+// Copyright 2009-2021 Intel Corporation
+// SPDX-License-Identifier: Apache-2.0
+
+#pragma once
+
+#if defined(TASKING_INTERNAL)
+# include "taskschedulerinternal.h"
+#elif defined(TASKING_TBB)
+# include "taskschedulertbb.h"
+#elif defined(TASKING_PPL)
+# include "taskschedulerppl.h"
+#else
+# error "no tasking system enabled"
+#endif
+