767e374dce
Since Embree v3.13.0 supports AARCH64, switch back to the official repo instead of using Embree-aarch64. `thirdparty/embree/patches/godot-changes.patch` should now contain an accurate diff of the changes done to the library.
15 lines
331 B
C++
15 lines
331 B
C++
// 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
|
|
|