a69cc9f13d
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.
(cherry picked from commit 767e374dce
)
24 lines
912 B
Diff
24 lines
912 B
Diff
diff --git a/thirdparty/embree/kernels/builders/primrefgen.cpp b/thirdparty/embree/kernels/builders/primrefgen.cpp
|
|
index bb4fc81dfe..d279dc4993 100644
|
|
--- a/thirdparty/embree/kernels/builders/primrefgen.cpp
|
|
+++ b/thirdparty/embree/kernels/builders/primrefgen.cpp
|
|
@@ -184,6 +184,9 @@ namespace embree
|
|
|
|
// special variants for grid meshes
|
|
|
|
+// -- GODOT start --
|
|
+#if defined(EMBREE_GEOMETRY_GRID)
|
|
+// -- GODOT end --
|
|
PrimInfo createPrimRefArrayGrids(Scene* scene, mvector<PrimRef>& prims, mvector<SubGridBuildData>& sgrids)
|
|
{
|
|
PrimInfo pinfo(empty);
|
|
@@ -293,6 +296,9 @@ namespace embree
|
|
|
|
return pinfo;
|
|
}
|
|
+// -- GODOT start --
|
|
+#endif
|
|
+// -- GODOT end --
|
|
|
|
// ====================================================================================================
|
|
// ====================================================================================================
|