Fix builtin_embree=no build linking the wrong version of Embree

This commit is contained in:
Jakub Marcowski 2024-05-08 00:26:40 +02:00 committed by Jakub Marcowski
parent ec78dde748
commit 7699d678c4
No known key found for this signature in database
GPG Key ID: 10D9E07CFFBC0E6F
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ protected:
static StaticRaycaster *(*create_function)();
public:
// compatible with embree3 rays
// Compatible with embree4 rays.
struct __aligned(16) Ray {
const static unsigned int INVALID_GEOMETRY_ID = ((unsigned int)-1); // from rtcore_common.h

View File

@ -309,7 +309,7 @@ def configure(env: "SConsEnvironment"):
if not env["builtin_embree"] and env["arch"] in ["x86_64", "arm64"]:
# No pkgconfig file so far, hardcode expected lib name.
env.Append(LIBS=["embree3"])
env.Append(LIBS=["embree4"])
if not env["builtin_openxr"]:
env.ParseConfig("pkg-config openxr --cflags --libs")

View File

@ -61,7 +61,7 @@ protected:
static LightmapRaycaster *(*create_function)();
public:
// compatible with embree3 rays
// Compatible with embree4 rays.
struct __aligned(16) Ray {
const static unsigned int INVALID_GEOMETRY_ID = ((unsigned int)-1); // from rtcore_common.h