Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions build_scripts/build_usd.py
Original file line number Diff line number Diff line change
Expand Up @@ -1599,12 +1599,8 @@ def InstallMaterialX(context, force, buildArgs):

############################################################
# Embree
# For MacOS we use version 3.13.3 to include a fix from Intel
# to build on Apple Silicon.
if MacOS():
EMBREE_URL = "https://github.com/embree/embree/archive/v3.13.3.zip"
else:
EMBREE_URL = "https://github.com/embree/embree/archive/v3.2.2.zip"

EMBREE_URL = "https://github.com/embree/embree/archive/v4.4.0.zip"

def InstallEmbree(context, force, buildArgs):
with CurrentWorkingDirectory(DownloadURL(EMBREE_URL, context, force)):
Expand Down
16 changes: 8 additions & 8 deletions cmake/modules/FindEmbree.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
#=============================================================================

if (APPLE)
set (EMBREE_LIB_NAME libembree3.dylib)
set (EMBREE_LIB_NAME libembree4.dylib)
elseif (UNIX)
set (EMBREE_LIB_NAME libembree3.so)
set (EMBREE_LIB_NAME libembree4.so)
elseif (WIN32)
set (EMBREE_LIB_NAME embree3.lib)
set (EMBREE_LIB_NAME embree4.lib)
endif()

find_library(EMBREE_LIBRARY
Expand All @@ -39,20 +39,20 @@ find_library(EMBREE_LIBRARY
)

find_path(EMBREE_INCLUDE_DIR
embree3/rtcore.h
embree4/rtcore.h
HINTS
"${EMBREE_LOCATION}/include"
"$ENV{EMBREE_LOCATION}/include"
DOC
"Embree headers path"
)

if (EMBREE_INCLUDE_DIR AND EXISTS "${EMBREE_INCLUDE_DIR}/embree3/rtcore_version.h" )
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree3/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_MAJOR.*$")
if (EMBREE_INCLUDE_DIR AND EXISTS "${EMBREE_INCLUDE_DIR}/embree4/rtcore_version.h" )
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree4/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_MAJOR.*$")
string(REGEX MATCHALL "[0-9]+" MAJOR ${TMP})
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree3/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_MINOR.*$")
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree4/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_MINOR.*$")
string(REGEX MATCHALL "[0-9]+" MINOR ${TMP})
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree3/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_PATCH.*$")
file(STRINGS "${EMBREE_INCLUDE_DIR}/embree4/rtcore_version.h" TMP REGEX "^#define RTC_VERSION_PATCH.*$")
string(REGEX MATCHALL "[0-9]+" PATCH ${TMP})

set (EMBREE_VERSION ${MAJOR}.${MINOR}.${PATCH})
Expand Down
2 changes: 1 addition & 1 deletion pxr/imaging/plugin/hdEmbree/context.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "pxr/base/gf/matrix4f.h"
#include "pxr/base/vt/array.h"

#include <embree3/rtcore.h>
#include <embree4/rtcore.h>

PXR_NAMESPACE_OPEN_SCOPE

Expand Down
4 changes: 2 additions & 2 deletions pxr/imaging/plugin/hdEmbree/mesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

#include "pxr/imaging/plugin/hdEmbree/meshSamplers.h"

#include <embree3/rtcore.h>
#include <embree3/rtcore_ray.h>
#include <embree4/rtcore.h>
#include <embree4/rtcore_ray.h>

PXR_NAMESPACE_OPEN_SCOPE

Expand Down
4 changes: 2 additions & 2 deletions pxr/imaging/plugin/hdEmbree/meshSamplers.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
#include "pxr/imaging/hd/meshUtil.h"
#include "pxr/base/vt/types.h"

#include <embree3/rtcore.h>
#include <embree3/rtcore_geometry.h>
#include <embree4/rtcore.h>
#include <embree4/rtcore_geometry.h>

#include <bitset>

Expand Down
6 changes: 3 additions & 3 deletions pxr/imaging/plugin/hdEmbree/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
#include <unordered_set>
#include <utility>
#include <vector>
#include <embree3/rtcore.h>
#include <embree3/rtcore_geometry.h>
#include <embree3/rtcore_ray.h>
#include <embree4/rtcore.h>
#include <embree4/rtcore_geometry.h>
#include <embree4/rtcore_ray.h>
#include <tbb/blocked_range.h>
#include <tbb/cache_aligned_allocator.h>
#include <tbb/concurrent_hash_map.h>
Expand Down
2 changes: 1 addition & 1 deletion pxr/imaging/plugin/hdEmbree/renderDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "pxr/base/tf/staticTokens.h"

#include <mutex>
#include <embree3/rtcore.h>
#include <embree4/rtcore.h>

PXR_NAMESPACE_OPEN_SCOPE

Expand Down
2 changes: 1 addition & 1 deletion pxr/imaging/plugin/hdEmbree/renderParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "pxr/imaging/hd/renderDelegate.h"
#include "pxr/imaging/hd/renderThread.h"

#include <embree3/rtcore.h>
#include <embree4/rtcore.h>

PXR_NAMESPACE_OPEN_SCOPE

Expand Down
12 changes: 6 additions & 6 deletions pxr/imaging/plugin/hdEmbree/renderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,9 @@ HdEmbreeRenderer::_TraceRay(unsigned int x, unsigned int y,
rayHit.ray.flags = 0;
_PopulateRayHit(&rayHit, origin, dir, 0.0f);
{
RTCIntersectContext context;
rtcInitIntersectContext(&context);
rtcIntersect1(_scene, &context, &rayHit);
RTCIntersectArguments arguments;
rtcInitIntersectArguments(&arguments);
rtcIntersect1(_scene, &rayHit, &arguments);
//
// there is something odd about how this is used in Embree. Is it reversed
// here and then when it it used in
Expand Down Expand Up @@ -1005,9 +1005,9 @@ HdEmbreeRenderer::_ComputeAmbientOcclusion(GfVec3f const& position,
shadow.flags = 0;
_PopulateRay(&shadow, position, shadowDir, 0.001f);
{
RTCIntersectContext context;
rtcInitIntersectContext(&context);
rtcOccluded1(_scene,&context,&shadow);
RTCOccludedArguments arguments;
rtcInitOccludedArguments(&arguments);
rtcOccluded1(_scene,&shadow,&arguments);
}

// Record this AO ray's contribution to the occlusion factor: a
Expand Down
4 changes: 2 additions & 2 deletions pxr/imaging/plugin/hdEmbree/renderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#include "pxr/base/gf/matrix4d.h"
#include "pxr/base/gf/rect2i.h"

#include <embree3/rtcore.h>
#include <embree3/rtcore_ray.h>
#include <embree4/rtcore.h>
#include <embree4/rtcore_ray.h>

#include <random>
#include <atomic>
Expand Down
2 changes: 1 addition & 1 deletion pxr/imaging/plugin/hdEmbree/testenv/testHdEmbree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include "pxr/base/tf/errorMark.h"

#include <embree3/rtcore.h>
#include <embree4/rtcore.h>
#include <iostream>

PXR_NAMESPACE_USING_DIRECTIVE
Expand Down
Loading