diff --git a/misc/usd/Makefile b/misc/usd/Makefile index 366db3100207..b6fb8fda1cdb 100644 --- a/misc/usd/Makefile +++ b/misc/usd/Makefile @@ -1,49 +1,55 @@ PORTNAME= usd DISTVERSIONPREFIX= v -DISTVERSION= 21.11 -PORTREVISION= 12 +DISTVERSION= 25.11 CATEGORIES= misc -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 4942189cf7b1a45b23d62f4ae92a940721ec4009.patch:-p1 \ - 445e3f8a473db9b1e0d1301e6ce4bf74c270f376.patch:-p1 - MAINTAINER= yuri@FreeBSD.org COMMENT= Universal Scene Description is a scene description management system WWW= http://www.openusd.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -NOT_FOR_ARCHS= armv6 armv7 i386 powerpc powerpc64le # CMakeLists.txt fails for non-64-bit architectures: Compiler does not support 64-bit builds; also: pxr/base/arch/defines.h:69:2: error: "Unsupported architecture. x86_64 or ARM64 required." +ONLY_FOR_ARCHS= aarch64 amd64 +ONLY_FOR_ARCHS_REASON= CMakeLists.txt fails for non-64-bit architectures: Compiler does not support 64-bit builds; also: pxr/base/arch/defines.h:69:2: error: "Unsupported architecture. x86_64 or ARM64 required." -LIB_DEPENDS= libtbb.so:devel/tbb +LIB_DEPENDS= libtbb.so:devel/onetbb USES= cmake python:test - USE_GITHUB= yes GH_ACCOUNT= PixarAnimationStudios -GH_PROJECT= ${PORTNAME:tu} +GH_PROJECT= OpenUSD +USE_LDCONFIG= yes -CMAKE_OFF= PXR_BUILD_TESTS PXR_BUILD_EXAMPLES PXR_BUILD_TUTORIALS PXR_ENABLE_PYTHON_SUPPORT +CMAKE_OFF= PXR_BUILD_EXAMPLES PXR_BUILD_TESTS PXR_BUILD_TUTORIALS \ + PXR_ENABLE_PYTHON_SUPPORT -OPTIONS_DEFINE= IMAGING TOOLS -OPTIONS_DEFAULT= TOOLS +OPTIONS_DEFINE= IMAGING MONOLITHIC TOOLS +OPTIONS_DEFAULT= IMAGING MONOLITHIC TOOLS OPTIONS_SUB= yes IMAGING_DESC= Build imaging components +MONOLITHIC_DESC= Build a monolithic library (required for blender) +TOOLS_DESC= Build commandline tools + +IMAGING_LIB_DEPENDS= libosdCPU.so:graphics/opensubdiv \ + libosdGPU.so:graphics/opensubdiv +IMAGING_USES= gl xorg +IMAGING_USE= GL=gl XORG=ice,sm,x11,xext IMAGING_CMAKE_BOOL= PXR_BUILD_IMAGING IMAGING_CMAKE_ON= -DPTEX_INCLUDE_DIR=${LOCALBASE}/include -IMAGING_BROKEN= see https://github.com/PixarAnimationStudios/USD/issues/1706 -TOOLS_DESC= Build commandline tools +MONOLITHIC_CMAKE_BOOL= PXR_BUILD_MONOLITHIC + TOOLS_CMAKE_BOOL= PXR_BUILD_USD_TOOLS -TOOLS_LIB_DEPENDS= libboost_program_options.so:devel/boost-libs do-test: # tests are expected to be installed, see https://github.com/PixarAnimationStudios/USD/issues/1707 @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DPXR_BUILD_TESTS=ON -DPYTHON_EXECUTABLE=${PYTHON_CMD} ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} \ + -DPXR_BUILD_TESTS=ON -DPYTHON_EXECUTABLE=${PYTHON_CMD} ${CMAKE_SOURCE_PATH} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} install && \ - ctest -C ${CMAKE_BUILD_TYPE} ${WRKSRC} + ${FIND} ${BUILD_WRKSRC} -name CTestTestfile.cmake -type f -exec \ + ${REINPLACE_CMD} -e 's|${PREFIX}/tests|${STAGEDIR}${PREFIX}/tests|g' {} + && \ + ctest -C ${CMAKE_BUILD_TYPE} ${WRKSRC} --output-on-failure .include diff --git a/misc/usd/distinfo b/misc/usd/distinfo index 8b3f5718dfe2..341f78e18de4 100644 --- a/misc/usd/distinfo +++ b/misc/usd/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1673539699 -SHA256 (PixarAnimationStudios-USD-v21.11_GH0.tar.gz) = 7adfde17b8ee294ee7002edb240555c61b5135fa215a7252b2a8e291bb9c4b44 -SIZE (PixarAnimationStudios-USD-v21.11_GH0.tar.gz) = 29844452 -SHA256 (4942189cf7b1a45b23d62f4ae92a940721ec4009.patch) = b53487285f28a163f7f39549fbe3b9cb743fd401570565df2466cbf357538990 -SIZE (4942189cf7b1a45b23d62f4ae92a940721ec4009.patch) = 46383 -SHA256 (445e3f8a473db9b1e0d1301e6ce4bf74c270f376.patch) = 3d0a237e3ac8b3d7fb7367e3801d68939b3d9bf4bd7b24f8cca152f43a7347e0 -SIZE (445e3f8a473db9b1e0d1301e6ce4bf74c270f376.patch) = 5930 +TIMESTAMP = 1761399445 +SHA256 (PixarAnimationStudios-OpenUSD-v25.11_GH0.tar.gz) = c37c633b5037a4552f61574670ecca8836229b78326bd62622f3422671188667 +SIZE (PixarAnimationStudios-OpenUSD-v25.11_GH0.tar.gz) = 148797586 diff --git a/misc/usd/files/patch-cmake_defaults_Packages.cmake b/misc/usd/files/patch-cmake_defaults_Packages.cmake new file mode 100644 index 000000000000..a1c868c52e52 --- /dev/null +++ b/misc/usd/files/patch-cmake_defaults_Packages.cmake @@ -0,0 +1,29 @@ +--- cmake/defaults/Packages.cmake.orig 2025-10-24 16:21:56 UTC ++++ cmake/defaults/Packages.cmake +@@ -218,6 +218,7 @@ if (PXR_BUILD_IMAGING) + endif() + # --Opensubdiv + set(OPENSUBDIV_USE_GPU ${PXR_BUILD_GPU_SUPPORT}) ++ find_package(OpenMP) + find_package(OpenSubdiv 3 CONFIG) + if(OpenSubdiv_DIR) + # Found in CONFIG mode. +@@ -230,6 +231,9 @@ if (PXR_BUILD_IMAGING) + if(OPENSUBDIV_USE_GPU) + list(APPEND OPENSUBDIV_LIBRARIES OpenSubdiv::osdGPU${postfix}) + endif() ++ if(OPENSUBDIV_USE_OPENMP) ++ list(APPEND OPENSUBDIV_LIBRARIES OpenMP::OpenMP_CXX) ++ endif() + break() + endforeach() + endif() +@@ -253,7 +257,7 @@ if (PXR_BUILD_IMAGING) + add_definitions(-DPXR_OPENVDB_SUPPORT_ENABLED) + endif() + # --X11 +- if (CMAKE_SYSTEM_NAME STREQUAL "Linux") ++ if (NOT (CMAKE_SYSTEM_NAME STREQUAL "Darwin" OR CMAKE_SYSTEM_NAME STREQUAL "Windows")) + find_package(X11) + add_definitions(-DPXR_X11_SUPPORT_ENABLED) + endif() diff --git a/misc/usd/files/patch-extras_usd_examples_usdObj_pch.h b/misc/usd/files/patch-extras_usd_examples_usdObj_pch.h new file mode 100644 index 000000000000..4d732d16110d --- /dev/null +++ b/misc/usd/files/patch-extras_usd_examples_usdObj_pch.h @@ -0,0 +1,11 @@ +--- extras/usd/examples/usdObj/pch.h.orig 2025-10-24 16:21:56 UTC ++++ extras/usd/examples/usdObj/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-extras_usd_examples_usdSchemaExamples_pch.h b/misc/usd/files/patch-extras_usd_examples_usdSchemaExamples_pch.h new file mode 100644 index 000000000000..2903379fe034 --- /dev/null +++ b/misc/usd/files/patch-extras_usd_examples_usdSchemaExamples_pch.h @@ -0,0 +1,11 @@ +--- extras/usd/examples/usdSchemaExamples/pch.h.orig 2025-10-24 16:21:56 UTC ++++ extras/usd/examples/usdSchemaExamples/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_base_arch_assumptions.cpp b/misc/usd/files/patch-pxr_base_arch_assumptions.cpp new file mode 100644 index 000000000000..80f2bb354d95 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_assumptions.cpp @@ -0,0 +1,20 @@ +--- pxr/base/arch/assumptions.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/assumptions.cpp +@@ -20,6 +20,8 @@ + + #if defined(ARCH_OS_LINUX) + #include ++#elif defined(ARCH_OS_FREEBSD) ++#include + #elif defined(ARCH_OS_DARWIN) + #include + #include +@@ -35,6 +37,8 @@ Arch_ObtainCacheLineSize() + { + #if defined(ARCH_OS_LINUX) + return sysconf(_SC_LEVEL1_DCACHE_LINESIZE); ++#elif defined(ARCH_OS_FREEBSD) ++ return CACHE_LINE_SIZE; + #elif defined(ARCH_OS_WASM_VM) + return 64; + #elif defined(ARCH_OS_DARWIN) diff --git a/misc/usd/files/patch-pxr_base_arch_daemon.cpp b/misc/usd/files/patch-pxr_base_arch_daemon.cpp new file mode 100644 index 000000000000..4dbbc2bfe0f4 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_daemon.cpp @@ -0,0 +1,11 @@ +--- pxr/base/arch/daemon.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/daemon.cpp +@@ -28,7 +28,7 @@ ArchCloseAllFiles(int nExcept, const int* exceptFds) + int + ArchCloseAllFiles(int nExcept, const int* exceptFds) + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + + int status, retStatus, retErrno; + int i, j, maxfd, maxExcept = -1; diff --git a/misc/usd/files/patch-pxr_base_arch_debugger.cpp b/misc/usd/files/patch-pxr_base_arch_debugger.cpp new file mode 100644 index 000000000000..b4ad13346a9c --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_debugger.cpp @@ -0,0 +1,83 @@ +--- pxr/base/arch/debugger.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/debugger.cpp +@@ -14,7 +14,7 @@ + #include "pxr/base/arch/export.h" + #include "pxr/base/arch/stackTrace.h" + #include "pxr/base/arch/systemInfo.h" +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + #include "pxr/base/arch/inttypes.h" + #include + #if !defined(ARCH_OS_IPHONE) +@@ -59,7 +59,7 @@ static char** _archDebuggerAttachArgs = 0; + + static char** _archDebuggerAttachArgs = 0; + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + static + void + Arch_DebuggerTrapHandler(int) +@@ -74,7 +74,7 @@ Arch_DebuggerTrapHandler(int) + } + #endif + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + static + void + Arch_DebuggerInitPosix() +@@ -108,7 +108,7 @@ Arch_DebuggerInit() + void + Arch_DebuggerInit() + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + #if defined(ARCH_CPU_INTEL) && defined(ARCH_BITS_64) + // Save some registers that normally don't have to be preserved. We + // do this so the caller of ArchDebuggerTrap() can see its arguments +@@ -153,7 +153,7 @@ Arch_DebuggerInit() + } + + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + // Use a 'non-locking' fork so that we won't get hung up if we've + // had malloc corruption. We can't prevent fork() from using the + // heap, unfortunately, since fork handlers can do whatever they +@@ -332,7 +332,7 @@ Arch_DebuggerAttachExecPosix(void* data) + + #endif // defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) + +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + + // Reads /proc/self/status, finds the line starting with "field:", and + // returns the portion following the ":". +@@ -443,7 +443,7 @@ Arch_DebuggerAttach() + return false; + } + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + + // To attach to gdb under Unix/Linux and Gnome: + // ARCH_DEBUGGER="gnome-terminal -e 'gdb -p %p'" +@@ -500,7 +500,7 @@ Arch_InitDebuggerAttach() + void + Arch_InitDebuggerAttach() + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_DARWIN) + // Maximum length of a pid written as a decimal. It's okay for this + // to be greater than that. + static const size_t _decimalPidLength = 20; +@@ -632,7 +632,7 @@ ArchDebuggerIsAttached() + return IsDebuggerPresent() == TRUE; + #elif defined(ARCH_OS_DARWIN) + return AmIBeingDebugged(); +-#elif defined(ARCH_OS_LINUX) ++#elif defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + return Arch_DebuggerIsAttachedPosix(); + #endif + return false; diff --git a/misc/usd/files/patch-pxr_base_arch_defines.h b/misc/usd/files/patch-pxr_base_arch_defines.h new file mode 100644 index 000000000000..375ca55421ee --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_defines.h @@ -0,0 +1,26 @@ +--- pxr/base/arch/defines.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/defines.h +@@ -14,6 +14,8 @@ + #define ARCH_OS_WASM_VM + #elif defined(__linux__) + #define ARCH_OS_LINUX ++#elif defined(__FreeBSD__) ++#define ARCH_OS_FREEBSD + #elif defined(__APPLE__) + #include "TargetConditionals.h" + #define ARCH_OS_DARWIN +@@ -80,12 +82,12 @@ + // + + // Only use the GNU STL extensions on Linux when using gcc. +-#if defined(ARCH_OS_LINUX) && defined(ARCH_COMPILER_GCC) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) && defined(ARCH_COMPILER_GCC) + #define ARCH_HAS_GNU_STL_EXTENSIONS + #endif + + // The MAP_POPULATE flag for mmap calls only exists on Linux platforms. +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #define ARCH_HAS_MMAP_MAP_POPULATE + #endif + diff --git a/misc/usd/files/patch-pxr_base_arch_fileSystem.cpp b/misc/usd/files/patch-pxr_base_arch_fileSystem.cpp new file mode 100644 index 000000000000..4083b8c629c5 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_fileSystem.cpp @@ -0,0 +1,142 @@ +--- pxr/base/arch/fileSystem.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/fileSystem.cpp +@@ -35,12 +35,24 @@ + #include + #include + #else ++#if !defined(ARCH_OS_FREEBSD) + #include ++#else ++#include ++#endif + #include + #include + #include + #endif + ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif ++ + PXR_NAMESPACE_OPEN_SCOPE + + using std::pair; +@@ -143,7 +155,7 @@ ArchStatIsWritable(const ArchStatType *st) + bool + ArchStatIsWritable(const ArchStatType *st) + { +-#if defined(ARCH_OS_LINUX) || defined (ARCH_OS_DARWIN) || \ ++#if defined(ARCH_OS_LINUX) || defined (ARCH_OS_DARWIN) || defined(ARCH_OS_FREEBSD) || \ + defined(ARCH_OS_WASM_VM) + if (st) { + return (st->st_mode & S_IWOTH) || +@@ -181,7 +193,7 @@ ArchGetModificationTime(const ArchStatType& st) + double + ArchGetModificationTime(const ArchStatType& st) + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + return st.st_mtim.tv_sec + 1e-9*st.st_mtim.tv_nsec; + #elif defined(ARCH_OS_DARWIN) + return st.st_mtimespec.tv_sec + 1e-9*st.st_mtimespec.tv_nsec; +@@ -433,7 +445,7 @@ ArchGetAccessTime(const struct stat& st) + double + ArchGetAccessTime(const struct stat& st) + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + return st.st_atim.tv_sec + 1e-9*st.st_atim.tv_nsec; + #elif defined(ARCH_OS_DARWIN) + return st.st_atimespec.tv_sec + 1e-9*st.st_atimespec.tv_nsec; +@@ -448,7 +460,7 @@ ArchGetStatusChangeTime(const struct stat& st) + double + ArchGetStatusChangeTime(const struct stat& st) + { +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + return st.st_ctim.tv_sec + 1e-9*st.st_ctim.tv_nsec; + #elif defined(ARCH_OS_DARWIN) + return st.st_ctimespec.tv_sec + 1e-9*st.st_ctimespec.tv_nsec; +@@ -479,7 +491,7 @@ ArchGetFileLength(FILE *file) + if (!file) + return -1; + #if defined (ARCH_OS_LINUX) || defined (ARCH_OS_DARWIN) || \ +- defined(ARCH_OS_WASM_VM) ++ defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + struct stat buf; + return fstat(fileno(file), &buf) < 0 ? -1 : + static_cast(buf.st_size); +@@ -494,7 +506,7 @@ ArchGetFileLength(const char* fileName) + ArchGetFileLength(const char* fileName) + { + #if defined (ARCH_OS_LINUX) || defined (ARCH_OS_DARWIN) || \ +- defined(ARCH_OS_WASM_VM) ++ defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + struct stat buf; + return stat(fileName, &buf) < 0 ? -1 : static_cast(buf.st_size); + #elif defined (ARCH_OS_WINDOWS) +@@ -557,7 +569,49 @@ ArchGetFileName(FILE *file) + std::filesystem::path(filePath.begin(), filePath.begin() + dwSize)); + result = ArchWindowsUtf16ToUtf8(canonicalPath.wstring()); + } +- return result; ++ return result; ++#elif defined (ARCH_OS_FREEBSD) ++ int mib[4]; ++ size_t i, len; ++ char *buffer = NULL; ++ struct kinfo_file *kf; ++ string path; ++ ++ mib[0] = CTL_KERN; ++ mib[1] = KERN_PROC; ++ mib[2] = KERN_PROC_FILEDESC; ++ mib[3] = getpid(); ++ len = 0; ++ if (sysctl( mib, sizeof(mib)/sizeof(mib[0]), NULL, &len, NULL, 0 )) ++ goto end; ++ len *= 2; ++ buffer = (char*)malloc( len ); ++ if (!buffer) ++ goto end; ++ if (sysctl( mib, sizeof(mib)/sizeof(mib[0]), buffer, &len, NULL, 0 )) ++ goto end; ++ ++ for (i = 0; i < len; ) ++ { ++ kf = (struct kinfo_file*) &buffer[i]; ++ if (kf->kf_structsize == 0) ++ break; ++ i += kf->kf_structsize; ++ ++ if (kf->kf_fd == fileno(file)) ++ { ++ if (kf->kf_path[0]) ++ { ++ path.resize(strlen(kf->kf_path) + 1); ++ sprintf(&path[0], "%s", kf->kf_path); ++ } ++ break; ++ } ++ } ++ ++end: ++ free( buffer ); ++ return path; + #else + #error Unknown system architecture + #endif +@@ -920,6 +974,9 @@ ArchQueryMappedMemoryResidency( + int ret = mincore( + reinterpret_cast(const_cast(addr)), len, + reinterpret_cast(pageMap)); ++ return ret == 0; ++#elif defined(ARCH_OS_FREEBSD) ++ int ret = mincore(const_cast(addr), len, (char *)(pageMap)); + return ret == 0; + #endif + // XXX: Not implemented for other platforms yet. diff --git a/misc/usd/files/patch-pxr_base_arch_fileSystem.h b/misc/usd/files/patch-pxr_base_arch_fileSystem.h new file mode 100644 index 000000000000..c74a1f4bc931 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_fileSystem.h @@ -0,0 +1,12 @@ +--- pxr/base/arch/fileSystem.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/fileSystem.h +@@ -28,6 +28,9 @@ + #include + #include + #include ++#elif defined(ARCH_OS_FREEBSD) ++#include ++#include + #elif defined(ARCH_OS_DARWIN) + #include + #include diff --git a/misc/usd/files/patch-pxr_base_arch_math.h b/misc/usd/files/patch-pxr_base_arch_math.h new file mode 100644 index 000000000000..39863c3e9280 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_math.h @@ -0,0 +1,11 @@ +--- pxr/base/arch/math.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/math.h +@@ -89,7 +89,7 @@ inline double ArchBitPatternToDouble(uint64_t v) { + #error Unknown system architecture. + #endif + +-#if defined(ARCH_OS_LINUX) || defined(doxygen) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(doxygen) + + /// Computes the sine and cosine of the specified value as a float. + inline void ArchSinCosf(float v, float *s, float *c) { sincosf(v, s, c); } diff --git a/misc/usd/files/patch-pxr_base_arch_pch.h b/misc/usd/files/patch-pxr_base_arch_pch.h new file mode 100644 index 000000000000..863c3e57055c --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_pch.h @@ -0,0 +1,11 @@ +--- pxr/base/arch/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/pch.h +@@ -30,7 +30,7 @@ + #include + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #include diff --git a/misc/usd/files/patch-pxr_base_arch_stackTrace.cpp b/misc/usd/files/patch-pxr_base_arch_stackTrace.cpp new file mode 100644 index 000000000000..580851784f08 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_stackTrace.cpp @@ -0,0 +1,43 @@ +--- pxr/base/arch/stackTrace.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/stackTrace.cpp +@@ -58,11 +58,11 @@ + /* Darwin/ppc did not do stack traces. Darwin/i386 still + needs some work, this has been stubbed out for now. */ + +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #endif + +-#if defined(ARCH_OS_LINUX) && defined(ARCH_BITS_64) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) && defined(ARCH_BITS_64) + #include + #endif + +@@ -93,7 +93,7 @@ ForkFunc Arch_nonLockingFork = + // total hack -- no idea if this will work if we die in malloc... + typedef int (*ForkFunc)(void); + ForkFunc Arch_nonLockingFork = +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + (ForkFunc)dlsym(RTLD_DEFAULT, "_Fork"); + #elif defined(ARCH_OS_DARWIN) || defined(ARCH_OS_WASM_VM) + NULL; +@@ -626,7 +626,7 @@ nonLockingFork() + } + #endif + +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + static int + nonLockingLinux__execve (const char *file, + char *const argv[], +@@ -1392,7 +1392,7 @@ ArchGetStackFrames(size_t maxDepth, size_t skip, vecto + frames->resize(ArchGetStackFrames(maxDepth, skip, frames->data())); + } + +-#if defined(ARCH_OS_LINUX) && defined(ARCH_BITS_64) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) && defined(ARCH_BITS_64) + struct Arch_UnwindContext { + public: + Arch_UnwindContext(size_t maxdepth, size_t skip, uintptr_t* frames) : diff --git a/misc/usd/files/patch-pxr_base_arch_symbols.cpp b/misc/usd/files/patch-pxr_base_arch_symbols.cpp new file mode 100644 index 000000000000..5cb15df826e6 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_symbols.cpp @@ -0,0 +1,11 @@ +--- pxr/base/arch/symbols.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/symbols.cpp +@@ -10,7 +10,7 @@ + #include "pxr/base/arch/symbols.h" + #include "pxr/base/arch/defines.h" + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + #include + #elif defined(ARCH_OS_DARWIN) + #include diff --git a/misc/usd/files/patch-pxr_base_arch_systemInfo.cpp b/misc/usd/files/patch-pxr_base_arch_systemInfo.cpp new file mode 100644 index 000000000000..aec6ff8461cf --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_systemInfo.cpp @@ -0,0 +1,64 @@ +--- pxr/base/arch/systemInfo.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/systemInfo.cpp +@@ -15,7 +15,7 @@ + #include + #include + +-#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + + #include + #include +@@ -96,16 +96,23 @@ ArchGetExecutablePath() + std::string + ArchGetExecutablePath() + { +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + ++#if defined(ARCH_OS_LINUX) + // On Linux the executable path is retrieved from the /proc/self/exe + // symlink. ++#define SELF_PATHNAME "/proc/self/exe"; ++#else ++ // On FreeBSD the executable path is retrieved from the /proc/curproc/file ++ // symlink. ++#define SELF_PATHNAME "/proc/curproc/file" ++#endif + return + _DynamicSizedRead(ARCH_PATH_MAX, + [](char* buffer, size_t* size) { +- const ssize_t n = readlink("/proc/self/exe", buffer, *size); ++ const ssize_t n = readlink(SELF_PATHNAME, buffer, *size); + if (n == -1) { +- ARCH_WARNING("Unable to read /proc/self/exe to obtain " ++ ARCH_WARNING("Unable to read " SELF_PATHNAME " to obtain " + "executable path"); + *size = std::numeric_limits::max(); + return false; +@@ -113,7 +120,7 @@ ArchGetExecutablePath() + else if (static_cast(n) >= *size) { + // Find out how much space we need. + struct stat sb; +- if (lstat("/proc/self/exe", &sb) == 0) { ++ if (lstat(SELF_PATHNAME, &sb) == 0) { + *size = sb.st_size + 1; + } + else { +@@ -127,6 +134,7 @@ ArchGetExecutablePath() + return true; + } + }); ++#undef SELF_PATHNAME + + #elif defined(ARCH_OS_DARWIN) + +@@ -177,7 +185,7 @@ ArchGetPageSize() + ArchGetPageSize() + { + #if defined(ARCH_OS_LINUX) || defined(ARCH_OS_DARWIN) || \ +- defined(ARCH_OS_WASM_VM) ++ defined(ARCH_OS_WASM_VM) || defined(ARCH_OS_FREEBSD) + return sysconf(_SC_PAGE_SIZE); + #elif defined(ARCH_OS_WINDOWS) + SYSTEM_INFO info; diff --git a/misc/usd/files/patch-pxr_base_arch_timing.cpp b/misc/usd/files/patch-pxr_base_arch_timing.cpp new file mode 100644 index 000000000000..426339839f97 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_timing.cpp @@ -0,0 +1,40 @@ +--- pxr/base/arch/timing.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/timing.cpp +@@ -24,6 +24,10 @@ + #include + #include + #include ++#elif defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include + #elif defined(ARCH_OS_WINDOWS) + #include + #include +@@ -133,6 +137,26 @@ Arch_ComputeNanosecondsPerTick() + // as the overhead to call now() one time. + return clockNanoSecs / + double(ticks - ArchGetIntervalTimerTickOverhead() - nowDuration); ++} ++#elif defined(ARCH_OS_FREEBSD) ++ ++static ++double ++Arch_ComputeNanosecondsPerTick() ++{ ++#if defined(ARCH_CPU_ARM) ++ uint64_t counter_hz; ++ __asm __volatile("mrs %0, CNTFRQ_EL0" : "=&r" (counter_hz)); ++ Arch_NanosecondsPerTick = double(1e9) / double(counter_hz); ++#else ++ size_t counter_mhz = 0; ++ const char mib[] = "dev.cpu.0.freq"; ++ if (sysctlbyname(mib, NULL, &counter_mhz, NULL, 0) == -1) { ++ perror("sysctlbyname"); ++ abort(); ++ } ++ Arch_NanosecondsPerTick = double(1e9) / double(counter_mhz*1000000); ++#endif + } + #elif defined(ARCH_OS_WINDOWS) + diff --git a/misc/usd/files/patch-pxr_base_arch_timing.h b/misc/usd/files/patch-pxr_base_arch_timing.h new file mode 100644 index 000000000000..bc14f5aaca01 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_arch_timing.h @@ -0,0 +1,11 @@ +--- pxr/base/arch/timing.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/arch/timing.h +@@ -19,7 +19,7 @@ + /// \addtogroup group_arch_SystemFunctions + ///@{ + +-#if defined(ARCH_OS_LINUX) && defined(ARCH_CPU_INTEL) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_FREEBSD) && defined(ARCH_CPU_INTEL) + #include + #elif defined(ARCH_OS_WASM_VM) + #include diff --git a/misc/usd/files/patch-pxr_base_plug_pch.h b/misc/usd/files/patch-pxr_base_plug_pch.h new file mode 100644 index 000000000000..4d65c007300a --- /dev/null +++ b/misc/usd/files/patch-pxr_base_plug_pch.h @@ -0,0 +1,16 @@ +--- pxr/base/plug/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/plug/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_base_tf_diagnostic.cpp b/misc/usd/files/patch-pxr_base_tf_diagnostic.cpp new file mode 100644 index 000000000000..0c6baa237618 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_tf_diagnostic.cpp @@ -0,0 +1,10 @@ +--- pxr/base/tf/diagnostic.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/tf/diagnostic.cpp +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + using std::string; + diff --git a/misc/usd/files/patch-pxr_base_tf_fileUtils.cpp b/misc/usd/files/patch-pxr_base_tf_fileUtils.cpp new file mode 100644 index 000000000000..420d4f9997a3 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_tf_fileUtils.cpp @@ -0,0 +1,11 @@ +--- pxr/base/tf/fileUtils.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/tf/fileUtils.cpp +@@ -230,7 +230,7 @@ TfIsWritable(string const& path) + bool + TfIsWritable(string const& path) + { +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + // faccessat accounts for mount read-only status. For maintaining legacy + // behavior, use faccessat instead of access so we can use the effective + // UID instead of the real UID. diff --git a/misc/usd/files/patch-pxr_base_tf_testenv_mallocTag.cpp b/misc/usd/files/patch-pxr_base_tf_testenv_mallocTag.cpp new file mode 100644 index 000000000000..af12f76feda1 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_tf_testenv_mallocTag.cpp @@ -0,0 +1,11 @@ +--- pxr/base/tf/testenv/mallocTag.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/tf/testenv/mallocTag.cpp +@@ -19,7 +19,7 @@ PXR_NAMESPACE_USING_DIRECTIVE + + // The TfMallocTag code depends upon the Linux memory allocator, ptmalloc3. + // Turning this test off for any other platforms for now. +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_FREEBSD) + + using std::vector; + using std::string; diff --git a/misc/usd/files/patch-pxr_base_trace_pch.h b/misc/usd/files/patch-pxr_base_trace_pch.h new file mode 100644 index 000000000000..edeac4f7e748 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_trace_pch.h @@ -0,0 +1,11 @@ +--- pxr/base/trace/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/trace/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_base_vt_pch.h b/misc/usd/files/patch-pxr_base_vt_pch.h new file mode 100644 index 000000000000..23f71116bae1 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_vt_pch.h @@ -0,0 +1,11 @@ +--- pxr/base/vt/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/vt/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_base_work_pch.h b/misc/usd/files/patch-pxr_base_work_pch.h new file mode 100644 index 000000000000..cb75fe44ef64 --- /dev/null +++ b/misc/usd/files/patch-pxr_base_work_pch.h @@ -0,0 +1,11 @@ +--- pxr/base/work/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/base/work/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_garch_glDebugWindow.cpp b/misc/usd/files/patch-pxr_imaging_garch_glDebugWindow.cpp new file mode 100644 index 000000000000..de4cb5e8ed62 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_garch_glDebugWindow.cpp @@ -0,0 +1,11 @@ +--- pxr/imaging/garch/glDebugWindow.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/garch/glDebugWindow.cpp +@@ -9,7 +9,7 @@ + #include "pxr/imaging/garch/glPlatformDebugContext.h" + #include "pxr/base/arch/defines.h" + +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_FREEBSD) + #include "pxr/imaging/garch/glPlatformDebugWindowGLX.h" + #elif defined(ARCH_OS_DARWIN) + #include "pxr/imaging/garch/glPlatformDebugWindowDarwin.h" diff --git a/misc/usd/files/patch-pxr_imaging_garch_glPlatformContext.h b/misc/usd/files/patch-pxr_imaging_garch_glPlatformContext.h new file mode 100644 index 000000000000..67f31c01159f --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_garch_glPlatformContext.h @@ -0,0 +1,11 @@ +--- pxr/imaging/garch/glPlatformContext.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/garch/glPlatformContext.h +@@ -15,7 +15,7 @@ + #include + #include + +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_FREEBSD) + + #include "pxr/imaging/garch/glPlatformContextGLX.h" + diff --git a/misc/usd/files/patch-pxr_imaging_garch_glPlatformDebugContext.cpp b/misc/usd/files/patch-pxr_imaging_garch_glPlatformDebugContext.cpp new file mode 100644 index 000000000000..364f68318a92 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_garch_glPlatformDebugContext.cpp @@ -0,0 +1,11 @@ +--- pxr/imaging/garch/glPlatformDebugContext.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/garch/glPlatformDebugContext.cpp +@@ -34,7 +34,7 @@ PXR_NAMESPACE_CLOSE_SCOPE + PXR_NAMESPACE_CLOSE_SCOPE + + //////////////////////////////////////////////////////////// +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) || defined(ARCH_OS_FREEBSD) + + #include + #include diff --git a/misc/usd/files/patch-pxr_imaging_garch_pch.h b/misc/usd/files/patch-pxr_imaging_garch_pch.h new file mode 100644 index 000000000000..9b86a2a00642 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_garch_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/garch/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/garch/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #include diff --git a/misc/usd/files/patch-pxr_imaging_glf_pch.h b/misc/usd/files/patch-pxr_imaging_glf_pch.h new file mode 100644 index 000000000000..28638a98d91f --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_glf_pch.h @@ -0,0 +1,16 @@ +--- pxr/imaging/glf/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/glf/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_imaging_hdMtlx_pch.h b/misc/usd/files/patch-pxr_imaging_hdMtlx_pch.h new file mode 100644 index 000000000000..d267d8b87046 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hdMtlx_pch.h @@ -0,0 +1,16 @@ +--- pxr/imaging/hdMtlx/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hdMtlx/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_imaging_hdSt_pch.h b/misc/usd/files/patch-pxr_imaging_hdSt_pch.h new file mode 100644 index 000000000000..61e54d66390e --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hdSt_pch.h @@ -0,0 +1,16 @@ +--- pxr/imaging/hdSt/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hdSt/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_imaging_hd_pch.h b/misc/usd/files/patch-pxr_imaging_hd_pch.h new file mode 100644 index 000000000000..362bc025e9ed --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hd_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/hd/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hd/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hdx_pch.h b/misc/usd/files/patch-pxr_imaging_hdx_pch.h new file mode 100644 index 000000000000..051d14aa8519 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hdx_pch.h @@ -0,0 +1,17 @@ +--- pxr/imaging/hdx/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hdx/pch.h +@@ -26,7 +26,13 @@ + #include + #include + #endif +-#if defined(ARCH_OS_WINDOWS) ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif#if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hgiGL_pch.h b/misc/usd/files/patch-pxr_imaging_hgiGL_pch.h new file mode 100644 index 000000000000..70e7f62787b5 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hgiGL_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/hgiGL/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hgiGL/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hgiVulkan_pch.h b/misc/usd/files/patch-pxr_imaging_hgiVulkan_pch.h new file mode 100644 index 000000000000..0d2870e5add9 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hgiVulkan_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/hgiVulkan/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hgiVulkan/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hgi_hgi.cpp b/misc/usd/files/patch-pxr_imaging_hgi_hgi.cpp new file mode 100644 index 000000000000..ec765351b1ac --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hgi_hgi.cpp @@ -0,0 +1,11 @@ +--- pxr/imaging/hgi/hgi.cpp.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hgi/hgi.cpp +@@ -54,7 +54,7 @@ _MakeNewPlatformDefaultHgi() + PlugRegistry& plugReg = PlugRegistry::GetInstance(); + + const char* hgiType = +- #if defined(ARCH_OS_LINUX) ++ #if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + "HgiGL"; + #elif defined(ARCH_OS_DARWIN) + "HgiMetal"; diff --git a/misc/usd/files/patch-pxr_imaging_hgi_pch.h b/misc/usd/files/patch-pxr_imaging_hgi_pch.h new file mode 100644 index 000000000000..547be80307a6 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hgi_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/hgi/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hgi/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hioOpenVDB_pch.h b/misc/usd/files/patch-pxr_imaging_hioOpenVDB_pch.h new file mode 100644 index 000000000000..5c829f9ae654 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hioOpenVDB_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/hioOpenVDB/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hioOpenVDB/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_hio_pch.h b/misc/usd/files/patch-pxr_imaging_hio_pch.h new file mode 100644 index 000000000000..70fcfee1a40b --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_hio_pch.h @@ -0,0 +1,16 @@ +--- pxr/imaging/hio/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/hio/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_imaging_plugin_hdEmbree_pch.h b/misc/usd/files/patch-pxr_imaging_plugin_hdEmbree_pch.h new file mode 100644 index 000000000000..55d487a921ee --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_plugin_hdEmbree_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/plugin/hdEmbree/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/plugin/hdEmbree/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_plugin_hdStorm_pch.h b/misc/usd/files/patch-pxr_imaging_plugin_hdStorm_pch.h new file mode 100644 index 000000000000..e7afe2163840 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_plugin_hdStorm_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/plugin/hdStorm/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/plugin/hdStorm/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_imaging_plugin_hioOiio_pch.h b/misc/usd/files/patch-pxr_imaging_plugin_hioOiio_pch.h new file mode 100644 index 000000000000..e83a3b555955 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_plugin_hioOiio_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/plugin/hioOiio/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/plugin/hioOiio/pch.h +@@ -10,7 +10,7 @@ + #define TF_MAX_ARITY 7 + #include "pxr/pxr.h" + #include "pxr/base/arch/defines.h" +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #endif + #include diff --git a/misc/usd/files/patch-pxr_imaging_pxOsd_pch.h b/misc/usd/files/patch-pxr_imaging_pxOsd_pch.h new file mode 100644 index 000000000000..99b861ca60b6 --- /dev/null +++ b/misc/usd/files/patch-pxr_imaging_pxOsd_pch.h @@ -0,0 +1,11 @@ +--- pxr/imaging/pxOsd/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/imaging/pxOsd/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usdImaging_usdAppUtils_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdAppUtils_pch.h new file mode 100644 index 000000000000..63e77674ba1e --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdAppUtils_pch.h @@ -0,0 +1,16 @@ +--- pxr/usdImaging/usdAppUtils/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdAppUtils/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usdImaging_usdImagingGL_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdImagingGL_pch.h new file mode 100644 index 000000000000..48b5f254f1e6 --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdImagingGL_pch.h @@ -0,0 +1,11 @@ +--- pxr/usdImaging/usdImagingGL/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdImagingGL/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usdImaging_usdImaging_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdImaging_pch.h new file mode 100644 index 000000000000..7e41bc87e190 --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdImaging_pch.h @@ -0,0 +1,16 @@ +--- pxr/usdImaging/usdImaging/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdImaging/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usdImaging_usdRiPxrImaging_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdRiPxrImaging_pch.h new file mode 100644 index 000000000000..9bc1b183a90d --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdRiPxrImaging_pch.h @@ -0,0 +1,11 @@ +--- pxr/usdImaging/usdRiPxrImaging/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdRiPxrImaging/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usdImaging_usdSkelImaging_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdSkelImaging_pch.h new file mode 100644 index 000000000000..2de5b7a7ab7a --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdSkelImaging_pch.h @@ -0,0 +1,11 @@ +--- pxr/usdImaging/usdSkelImaging/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdSkelImaging/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usdImaging_usdVolImaging_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdVolImaging_pch.h new file mode 100644 index 000000000000..8d0aed79fc63 --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdVolImaging_pch.h @@ -0,0 +1,11 @@ +--- pxr/usdImaging/usdVolImaging/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdVolImaging/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usdImaging_usdviewq_pch.h b/misc/usd/files/patch-pxr_usdImaging_usdviewq_pch.h new file mode 100644 index 000000000000..14b55927df4e --- /dev/null +++ b/misc/usd/files/patch-pxr_usdImaging_usdviewq_pch.h @@ -0,0 +1,11 @@ +--- pxr/usdImaging/usdviewq/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usdImaging/usdviewq/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_ar_pch.h b/misc/usd/files/patch-pxr_usd_ar_pch.h new file mode 100644 index 000000000000..04e180f1f553 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_ar_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/ar/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/ar/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_pcp_pch.h b/misc/usd/files/patch-pxr_usd_pcp_pch.h new file mode 100644 index 000000000000..68c05efc8bbe --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_pcp_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/pcp/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/pcp/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_plugin_sdrOsl_pch.h b/misc/usd/files/patch-pxr_usd_plugin_sdrOsl_pch.h new file mode 100644 index 000000000000..08c4b841d11d --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_plugin_sdrOsl_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/plugin/sdrOsl/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/plugin/sdrOsl/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_plugin_usdAbc_pch.h b/misc/usd/files/patch-pxr_usd_plugin_usdAbc_pch.h new file mode 100644 index 000000000000..52888a40d42b --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_plugin_usdAbc_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/plugin/usdAbc/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/plugin/usdAbc/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_plugin_usdDraco_pch.h b/misc/usd/files/patch-pxr_usd_plugin_usdDraco_pch.h new file mode 100644 index 000000000000..c729767d154a --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_plugin_usdDraco_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/plugin/usdDraco/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/plugin/usdDraco/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_sdf_pch.h b/misc/usd/files/patch-pxr_usd_sdf_pch.h new file mode 100644 index 000000000000..91d5c03f2d85 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_sdf_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/sdf/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/sdf/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_sdr_pch.h b/misc/usd/files/patch-pxr_usd_sdr_pch.h new file mode 100644 index 000000000000..a3713a43ef3f --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_sdr_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/sdr/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/sdr/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_usdGeom_pch.h b/misc/usd/files/patch-pxr_usd_usdGeom_pch.h new file mode 100644 index 000000000000..0d1db7c0f687 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdGeom_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdGeom/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdGeom/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdHydra_pch.h b/misc/usd/files/patch-pxr_usd_usdHydra_pch.h new file mode 100644 index 000000000000..93096c47862c --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdHydra_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdHydra/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdHydra/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdLux_pch.h b/misc/usd/files/patch-pxr_usd_usdLux_pch.h new file mode 100644 index 000000000000..f647c718ad16 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdLux_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdLux/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdLux/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdMedia_pch.h b/misc/usd/files/patch-pxr_usd_usdMedia_pch.h new file mode 100644 index 000000000000..267d056e94e6 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdMedia_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdMedia/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdMedia/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdPhysics_pch.h b/misc/usd/files/patch-pxr_usd_usdPhysics_pch.h new file mode 100644 index 000000000000..504b2675d777 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdPhysics_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdPhysics/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdPhysics/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdRender_pch.h b/misc/usd/files/patch-pxr_usd_usdRender_pch.h new file mode 100644 index 000000000000..dec6cb2d0e22 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdRender_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdRender/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdRender/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdRi_pch.h b/misc/usd/files/patch-pxr_usd_usdRi_pch.h new file mode 100644 index 000000000000..eaeadc5110e4 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdRi_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdRi/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdRi/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdShade_pch.h b/misc/usd/files/patch-pxr_usd_usdShade_pch.h new file mode 100644 index 000000000000..1a3cefa79d6a --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdShade_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/usdShade/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdShade/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_usdSkel_pch.h b/misc/usd/files/patch-pxr_usd_usdSkel_pch.h new file mode 100644 index 000000000000..c65dd5b619de --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdSkel_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdSkel/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdSkel/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdUI_pch.h b/misc/usd/files/patch-pxr_usd_usdUI_pch.h new file mode 100644 index 000000000000..897e589b7859 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdUI_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdUI/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdUI/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usdUtils_pch.h b/misc/usd/files/patch-pxr_usd_usdUtils_pch.h new file mode 100644 index 000000000000..ba9f3efef724 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdUtils_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/usdUtils/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdUtils/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-pxr_usd_usdVol_pch.h b/misc/usd/files/patch-pxr_usd_usdVol_pch.h new file mode 100644 index 000000000000..4581fae45b90 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usdVol_pch.h @@ -0,0 +1,11 @@ +--- pxr/usd/usdVol/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usdVol/pch.h +@@ -13,7 +13,7 @@ + #if defined(ARCH_OS_DARWIN) + #include + #endif +-#if defined(ARCH_OS_LINUX) ++#if defined(ARCH_OS_LINUX) || defined(ARCH_OS_FREEBSD) + #include + #include + #endif diff --git a/misc/usd/files/patch-pxr_usd_usd_clip.cpp b/misc/usd/files/patch-pxr_usd_usd_clip.cpp index aefb8f0a7ddd..f1e6ecc863e7 100644 --- a/misc/usd/files/patch-pxr_usd_usd_clip.cpp +++ b/misc/usd/files/patch-pxr_usd_usd_clip.cpp @@ -1,10 +1,10 @@ ---- pxr/usd/usd/clip.cpp.orig 2021-11-01 17:10:51 UTC +--- pxr/usd/usd/clip.cpp.orig 2025-10-24 16:21:56 UTC +++ pxr/usd/usd/clip.cpp -@@ -44,6 +44,7 @@ - - #include +@@ -28,6 +28,7 @@ + #include "pxr/base/tf/stringUtils.h" + #include +#include #include #include #include diff --git a/misc/usd/files/patch-pxr_usd_usd_pch.h b/misc/usd/files/patch-pxr_usd_usd_pch.h new file mode 100644 index 000000000000..4ffec2da5769 --- /dev/null +++ b/misc/usd/files/patch-pxr_usd_usd_pch.h @@ -0,0 +1,16 @@ +--- pxr/usd/usd/pch.h.orig 2025-10-24 16:21:56 UTC ++++ pxr/usd/usd/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/files/patch-third__party_renderman-26_plugin_rmanArgsParser_pch.h b/misc/usd/files/patch-third__party_renderman-26_plugin_rmanArgsParser_pch.h new file mode 100644 index 000000000000..dba4438e4137 --- /dev/null +++ b/misc/usd/files/patch-third__party_renderman-26_plugin_rmanArgsParser_pch.h @@ -0,0 +1,16 @@ +--- third_party/renderman-26/plugin/rmanArgsParser/pch.h.orig 2025-10-24 16:21:56 UTC ++++ third_party/renderman-26/plugin/rmanArgsParser/pch.h +@@ -26,6 +26,13 @@ + #include + #include + #endif ++#if defined(ARCH_OS_FREEBSD) ++#include ++#include ++#include ++#include ++#include ++#endif + #if defined(ARCH_OS_WINDOWS) + #ifndef WIN32_LEAN_AND_MEAN + #define WIN32_LEAN_AND_MEAN diff --git a/misc/usd/pkg-plist b/misc/usd/pkg-plist index f4ea5dadca8c..9945d7f6e061 100644 --- a/misc/usd/pkg-plist +++ b/misc/usd/pkg-plist @@ -1,654 +1,1945 @@ %%TOOLS%%bin/sdfdump %%TOOLS%%bin/sdffilter +%%TOOLS%%bin/usdcat +%%TOOLS%%bin/usdchecker +%%TOOLS%%bin/usdtree cmake/pxrTargets-%%CMAKE_BUILD_TYPE%%.cmake cmake/pxrTargets.cmake include/pxr/base/arch/align.h include/pxr/base/arch/api.h include/pxr/base/arch/attributes.h include/pxr/base/arch/buildMode.h include/pxr/base/arch/daemon.h include/pxr/base/arch/debugger.h include/pxr/base/arch/defines.h include/pxr/base/arch/demangle.h include/pxr/base/arch/env.h include/pxr/base/arch/errno.h include/pxr/base/arch/error.h include/pxr/base/arch/export.h include/pxr/base/arch/fileSystem.h include/pxr/base/arch/function.h include/pxr/base/arch/functionLite.h include/pxr/base/arch/hash.h include/pxr/base/arch/hints.h include/pxr/base/arch/inttypes.h include/pxr/base/arch/library.h include/pxr/base/arch/mallocHook.h include/pxr/base/arch/math.h include/pxr/base/arch/pragmas.h include/pxr/base/arch/regex.h include/pxr/base/arch/stackTrace.h include/pxr/base/arch/symbols.h include/pxr/base/arch/systemInfo.h include/pxr/base/arch/threads.h include/pxr/base/arch/timing.h include/pxr/base/arch/virtualMemory.h include/pxr/base/arch/vsnprintf.h include/pxr/base/gf/api.h include/pxr/base/gf/bbox3d.h include/pxr/base/gf/camera.h +include/pxr/base/gf/color.h +include/pxr/base/gf/colorSpace.h include/pxr/base/gf/declare.h +include/pxr/base/gf/dualQuatd.h +include/pxr/base/gf/dualQuatf.h +include/pxr/base/gf/dualQuath.h include/pxr/base/gf/frustum.h include/pxr/base/gf/gamma.h include/pxr/base/gf/half.h include/pxr/base/gf/homogeneous.h include/pxr/base/gf/ilmbase_half.h include/pxr/base/gf/ilmbase_halfLimits.h include/pxr/base/gf/interval.h include/pxr/base/gf/limits.h include/pxr/base/gf/line.h include/pxr/base/gf/line2d.h include/pxr/base/gf/lineSeg.h include/pxr/base/gf/lineSeg2d.h include/pxr/base/gf/math.h include/pxr/base/gf/matrix2d.h include/pxr/base/gf/matrix2f.h include/pxr/base/gf/matrix3d.h include/pxr/base/gf/matrix3f.h include/pxr/base/gf/matrix4d.h include/pxr/base/gf/matrix4f.h include/pxr/base/gf/matrixData.h include/pxr/base/gf/multiInterval.h +include/pxr/base/gf/numericCast.h include/pxr/base/gf/plane.h include/pxr/base/gf/quatd.h include/pxr/base/gf/quaternion.h include/pxr/base/gf/quatf.h include/pxr/base/gf/quath.h include/pxr/base/gf/range1d.h include/pxr/base/gf/range1f.h include/pxr/base/gf/range2d.h include/pxr/base/gf/range2f.h include/pxr/base/gf/range3d.h include/pxr/base/gf/range3f.h include/pxr/base/gf/ray.h include/pxr/base/gf/rect2i.h include/pxr/base/gf/rotation.h include/pxr/base/gf/size2.h include/pxr/base/gf/size3.h include/pxr/base/gf/traits.h include/pxr/base/gf/transform.h include/pxr/base/gf/vec2d.h include/pxr/base/gf/vec2f.h include/pxr/base/gf/vec2h.h include/pxr/base/gf/vec2i.h include/pxr/base/gf/vec3d.h include/pxr/base/gf/vec3f.h include/pxr/base/gf/vec3h.h include/pxr/base/gf/vec3i.h include/pxr/base/gf/vec4d.h include/pxr/base/gf/vec4f.h include/pxr/base/gf/vec4h.h include/pxr/base/gf/vec4i.h include/pxr/base/js/api.h include/pxr/base/js/converter.h include/pxr/base/js/json.h include/pxr/base/js/types.h include/pxr/base/js/utils.h include/pxr/base/js/value.h +include/pxr/base/pegtl/pegtl.hpp +include/pxr/base/pegtl/pegtl/apply_mode.hpp +include/pxr/base/pegtl/pegtl/argv_input.hpp +include/pxr/base/pegtl/pegtl/ascii.hpp +include/pxr/base/pegtl/pegtl/buffer_input.hpp +include/pxr/base/pegtl/pegtl/change_action.hpp +include/pxr/base/pegtl/pegtl/change_action_and_state.hpp +include/pxr/base/pegtl/pegtl/change_action_and_states.hpp +include/pxr/base/pegtl/pegtl/change_control.hpp +include/pxr/base/pegtl/pegtl/change_state.hpp +include/pxr/base/pegtl/pegtl/change_states.hpp +include/pxr/base/pegtl/pegtl/config.hpp +include/pxr/base/pegtl/pegtl/contrib/abnf.hpp +include/pxr/base/pegtl/pegtl/contrib/add_state.hpp +include/pxr/base/pegtl/pegtl/contrib/alphabet.hpp +include/pxr/base/pegtl/pegtl/contrib/analyze.hpp +include/pxr/base/pegtl/pegtl/contrib/analyze_traits.hpp +include/pxr/base/pegtl/pegtl/contrib/check_bytes.hpp +include/pxr/base/pegtl/pegtl/contrib/control_action.hpp +include/pxr/base/pegtl/pegtl/contrib/coverage.hpp +include/pxr/base/pegtl/pegtl/contrib/forward.hpp +include/pxr/base/pegtl/pegtl/contrib/function.hpp +include/pxr/base/pegtl/pegtl/contrib/http.hpp +include/pxr/base/pegtl/pegtl/contrib/icu/internal.hpp +include/pxr/base/pegtl/pegtl/contrib/icu/utf16.hpp +include/pxr/base/pegtl/pegtl/contrib/icu/utf32.hpp +include/pxr/base/pegtl/pegtl/contrib/icu/utf8.hpp +include/pxr/base/pegtl/pegtl/contrib/if_then.hpp +include/pxr/base/pegtl/pegtl/contrib/instantiate.hpp +include/pxr/base/pegtl/pegtl/contrib/integer.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/endian.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/endian_gcc.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/endian_win.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_mask_uint.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_mask_uint8.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_uint.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_uint8.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_utf16.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/peek_utf32.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/read_uint.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/set_stack_guard.hpp +include/pxr/base/pegtl/pegtl/contrib/internal/vector_stack_guard.hpp +include/pxr/base/pegtl/pegtl/contrib/iri.hpp +include/pxr/base/pegtl/pegtl/contrib/json.hpp +include/pxr/base/pegtl/pegtl/contrib/json_pointer.hpp +include/pxr/base/pegtl/pegtl/contrib/limit_bytes.hpp +include/pxr/base/pegtl/pegtl/contrib/limit_depth.hpp +include/pxr/base/pegtl/pegtl/contrib/parse_tree.hpp +include/pxr/base/pegtl/pegtl/contrib/parse_tree_to_dot.hpp +include/pxr/base/pegtl/pegtl/contrib/peg.hpp +include/pxr/base/pegtl/pegtl/contrib/predicates.hpp +include/pxr/base/pegtl/pegtl/contrib/print.hpp +include/pxr/base/pegtl/pegtl/contrib/print_coverage.hpp +include/pxr/base/pegtl/pegtl/contrib/proto3.hpp +include/pxr/base/pegtl/pegtl/contrib/raw_string.hpp +include/pxr/base/pegtl/pegtl/contrib/remove_first_state.hpp +include/pxr/base/pegtl/pegtl/contrib/remove_last_states.hpp +include/pxr/base/pegtl/pegtl/contrib/rep_one_min_max.hpp +include/pxr/base/pegtl/pegtl/contrib/rep_string.hpp +include/pxr/base/pegtl/pegtl/contrib/separated_seq.hpp +include/pxr/base/pegtl/pegtl/contrib/shuffle_states.hpp +include/pxr/base/pegtl/pegtl/contrib/state_control.hpp +include/pxr/base/pegtl/pegtl/contrib/to_string.hpp +include/pxr/base/pegtl/pegtl/contrib/trace.hpp +include/pxr/base/pegtl/pegtl/contrib/uint16.hpp +include/pxr/base/pegtl/pegtl/contrib/uint32.hpp +include/pxr/base/pegtl/pegtl/contrib/uint64.hpp +include/pxr/base/pegtl/pegtl/contrib/uint8.hpp +include/pxr/base/pegtl/pegtl/contrib/unescape.hpp +include/pxr/base/pegtl/pegtl/contrib/uri.hpp +include/pxr/base/pegtl/pegtl/contrib/utf16.hpp +include/pxr/base/pegtl/pegtl/contrib/utf32.hpp +include/pxr/base/pegtl/pegtl/cstream_input.hpp +include/pxr/base/pegtl/pegtl/demangle.hpp +include/pxr/base/pegtl/pegtl/disable_action.hpp +include/pxr/base/pegtl/pegtl/discard_input.hpp +include/pxr/base/pegtl/pegtl/discard_input_on_failure.hpp +include/pxr/base/pegtl/pegtl/discard_input_on_success.hpp +include/pxr/base/pegtl/pegtl/enable_action.hpp +include/pxr/base/pegtl/pegtl/eol.hpp +include/pxr/base/pegtl/pegtl/eol_pair.hpp +include/pxr/base/pegtl/pegtl/file_input.hpp +include/pxr/base/pegtl/pegtl/internal/action.hpp +include/pxr/base/pegtl/pegtl/internal/action_input.hpp +include/pxr/base/pegtl/pegtl/internal/any.hpp +include/pxr/base/pegtl/pegtl/internal/apply.hpp +include/pxr/base/pegtl/pegtl/internal/apply0.hpp +include/pxr/base/pegtl/pegtl/internal/apply0_single.hpp +include/pxr/base/pegtl/pegtl/internal/apply_single.hpp +include/pxr/base/pegtl/pegtl/internal/at.hpp +include/pxr/base/pegtl/pegtl/internal/bof.hpp +include/pxr/base/pegtl/pegtl/internal/bol.hpp +include/pxr/base/pegtl/pegtl/internal/bump.hpp +include/pxr/base/pegtl/pegtl/internal/bump_help.hpp +include/pxr/base/pegtl/pegtl/internal/bytes.hpp +include/pxr/base/pegtl/pegtl/internal/control.hpp +include/pxr/base/pegtl/pegtl/internal/cr_crlf_eol.hpp +include/pxr/base/pegtl/pegtl/internal/cr_eol.hpp +include/pxr/base/pegtl/pegtl/internal/crlf_eol.hpp +include/pxr/base/pegtl/pegtl/internal/cstream_reader.hpp +include/pxr/base/pegtl/pegtl/internal/cstring_reader.hpp +include/pxr/base/pegtl/pegtl/internal/dependent_false.hpp +include/pxr/base/pegtl/pegtl/internal/disable.hpp +include/pxr/base/pegtl/pegtl/internal/discard.hpp +include/pxr/base/pegtl/pegtl/internal/enable.hpp +include/pxr/base/pegtl/pegtl/internal/enable_control.hpp +include/pxr/base/pegtl/pegtl/internal/eof.hpp +include/pxr/base/pegtl/pegtl/internal/eol.hpp +include/pxr/base/pegtl/pegtl/internal/eolf.hpp +include/pxr/base/pegtl/pegtl/internal/failure.hpp +include/pxr/base/pegtl/pegtl/internal/file_mapper_posix.hpp +include/pxr/base/pegtl/pegtl/internal/file_mapper_win32.hpp +include/pxr/base/pegtl/pegtl/internal/file_reader.hpp +include/pxr/base/pegtl/pegtl/internal/filesystem.hpp +include/pxr/base/pegtl/pegtl/internal/has_apply.hpp +include/pxr/base/pegtl/pegtl/internal/has_apply0.hpp +include/pxr/base/pegtl/pegtl/internal/has_match.hpp +include/pxr/base/pegtl/pegtl/internal/has_unwind.hpp +include/pxr/base/pegtl/pegtl/internal/identifier.hpp +include/pxr/base/pegtl/pegtl/internal/if_apply.hpp +include/pxr/base/pegtl/pegtl/internal/if_must.hpp +include/pxr/base/pegtl/pegtl/internal/if_must_else.hpp +include/pxr/base/pegtl/pegtl/internal/if_then_else.hpp +include/pxr/base/pegtl/pegtl/internal/input_pair.hpp +include/pxr/base/pegtl/pegtl/internal/istream_reader.hpp +include/pxr/base/pegtl/pegtl/internal/istring.hpp +include/pxr/base/pegtl/pegtl/internal/iterator.hpp +include/pxr/base/pegtl/pegtl/internal/lf_crlf_eol.hpp +include/pxr/base/pegtl/pegtl/internal/lf_eol.hpp +include/pxr/base/pegtl/pegtl/internal/list.hpp +include/pxr/base/pegtl/pegtl/internal/list_must.hpp +include/pxr/base/pegtl/pegtl/internal/list_tail.hpp +include/pxr/base/pegtl/pegtl/internal/list_tail_pad.hpp +include/pxr/base/pegtl/pegtl/internal/marker.hpp +include/pxr/base/pegtl/pegtl/internal/minus.hpp +include/pxr/base/pegtl/pegtl/internal/missing_apply.hpp +include/pxr/base/pegtl/pegtl/internal/missing_apply0.hpp +include/pxr/base/pegtl/pegtl/internal/must.hpp +include/pxr/base/pegtl/pegtl/internal/not_at.hpp +include/pxr/base/pegtl/pegtl/internal/one.hpp +include/pxr/base/pegtl/pegtl/internal/opt.hpp +include/pxr/base/pegtl/pegtl/internal/pad.hpp +include/pxr/base/pegtl/pegtl/internal/pad_opt.hpp +include/pxr/base/pegtl/pegtl/internal/path_to_string.hpp +include/pxr/base/pegtl/pegtl/internal/peek_char.hpp +include/pxr/base/pegtl/pegtl/internal/peek_utf8.hpp +include/pxr/base/pegtl/pegtl/internal/pegtl_string.hpp +include/pxr/base/pegtl/pegtl/internal/plus.hpp +include/pxr/base/pegtl/pegtl/internal/raise.hpp +include/pxr/base/pegtl/pegtl/internal/range.hpp +include/pxr/base/pegtl/pegtl/internal/ranges.hpp +include/pxr/base/pegtl/pegtl/internal/rematch.hpp +include/pxr/base/pegtl/pegtl/internal/rep.hpp +include/pxr/base/pegtl/pegtl/internal/rep_min.hpp +include/pxr/base/pegtl/pegtl/internal/rep_min_max.hpp +include/pxr/base/pegtl/pegtl/internal/rep_opt.hpp +include/pxr/base/pegtl/pegtl/internal/require.hpp +include/pxr/base/pegtl/pegtl/internal/result_on_found.hpp +include/pxr/base/pegtl/pegtl/internal/rules.hpp +include/pxr/base/pegtl/pegtl/internal/seq.hpp +include/pxr/base/pegtl/pegtl/internal/sor.hpp +include/pxr/base/pegtl/pegtl/internal/star.hpp +include/pxr/base/pegtl/pegtl/internal/star_must.hpp +include/pxr/base/pegtl/pegtl/internal/state.hpp +include/pxr/base/pegtl/pegtl/internal/string.hpp +include/pxr/base/pegtl/pegtl/internal/success.hpp +include/pxr/base/pegtl/pegtl/internal/try_catch_type.hpp +include/pxr/base/pegtl/pegtl/internal/until.hpp +include/pxr/base/pegtl/pegtl/internal/unwind_guard.hpp +include/pxr/base/pegtl/pegtl/istream_input.hpp +include/pxr/base/pegtl/pegtl/match.hpp +include/pxr/base/pegtl/pegtl/memory_input.hpp +include/pxr/base/pegtl/pegtl/mmap_input.hpp +include/pxr/base/pegtl/pegtl/must_if.hpp +include/pxr/base/pegtl/pegtl/normal.hpp +include/pxr/base/pegtl/pegtl/nothing.hpp +include/pxr/base/pegtl/pegtl/parse.hpp +include/pxr/base/pegtl/pegtl/parse_error.hpp +include/pxr/base/pegtl/pegtl/position.hpp +include/pxr/base/pegtl/pegtl/read_input.hpp +include/pxr/base/pegtl/pegtl/require_apply.hpp +include/pxr/base/pegtl/pegtl/require_apply0.hpp +include/pxr/base/pegtl/pegtl/rewind_mode.hpp +include/pxr/base/pegtl/pegtl/rules.hpp +include/pxr/base/pegtl/pegtl/string_input.hpp +include/pxr/base/pegtl/pegtl/tracking_mode.hpp +include/pxr/base/pegtl/pegtl/type_list.hpp +include/pxr/base/pegtl/pegtl/utf8.hpp +include/pxr/base/pegtl/pegtl/version.hpp +include/pxr/base/pegtl/pegtl/visit.hpp include/pxr/base/plug/api.h include/pxr/base/plug/interfaceFactory.h include/pxr/base/plug/notice.h include/pxr/base/plug/plugin.h include/pxr/base/plug/registry.h include/pxr/base/plug/staticInterface.h include/pxr/base/plug/thisPlugin.h include/pxr/base/tf/anyUniquePtr.h include/pxr/base/tf/anyWeakPtr.h include/pxr/base/tf/api.h include/pxr/base/tf/atomicOfstreamWrapper.h +include/pxr/base/tf/bigRWMutex.h include/pxr/base/tf/bitUtils.h +include/pxr/base/tf/bits.h include/pxr/base/tf/callContext.h +include/pxr/base/tf/compressedBits.h include/pxr/base/tf/cxxCast.h include/pxr/base/tf/debug.h include/pxr/base/tf/debugNotice.h include/pxr/base/tf/declarePtrs.h +include/pxr/base/tf/delegatedCountPtr.h include/pxr/base/tf/denseHashMap.h include/pxr/base/tf/denseHashSet.h include/pxr/base/tf/diagnostic.h include/pxr/base/tf/diagnosticBase.h include/pxr/base/tf/diagnosticHelper.h include/pxr/base/tf/diagnosticLite.h include/pxr/base/tf/diagnosticMgr.h include/pxr/base/tf/dl.h include/pxr/base/tf/enum.h include/pxr/base/tf/envSetting.h include/pxr/base/tf/error.h include/pxr/base/tf/errorMark.h include/pxr/base/tf/errorTransport.h include/pxr/base/tf/exception.h include/pxr/base/tf/expiryNotifier.h include/pxr/base/tf/fastCompression.h include/pxr/base/tf/fileUtils.h include/pxr/base/tf/functionRef.h +include/pxr/base/tf/functionTraits.h include/pxr/base/tf/getenv.h include/pxr/base/tf/hash.h include/pxr/base/tf/hashmap.h include/pxr/base/tf/hashset.h include/pxr/base/tf/instantiateSingleton.h include/pxr/base/tf/instantiateStacked.h include/pxr/base/tf/instantiateType.h include/pxr/base/tf/iterator.h include/pxr/base/tf/mallocTag.h +include/pxr/base/tf/meta.h include/pxr/base/tf/notice.h include/pxr/base/tf/nullPtr.h include/pxr/base/tf/ostreamMethods.h include/pxr/base/tf/pathUtils.h include/pxr/base/tf/patternMatcher.h include/pxr/base/tf/pointerAndBits.h -include/pxr/base/tf/preprocessorUtils.h include/pxr/base/tf/preprocessorUtilsLite.h +include/pxr/base/tf/pxrCLI11/CLI11.h +include/pxr/base/tf/pxrTslRobinMap/robin_growth_policy.h +include/pxr/base/tf/pxrTslRobinMap/robin_hash.h +include/pxr/base/tf/pxrTslRobinMap/robin_map.h +include/pxr/base/tf/pxrTslRobinMap/robin_set.h include/pxr/base/tf/pyLock.h +include/pxr/base/tf/pyObjWrapper.h +include/pxr/base/tf/pyTracing.h include/pxr/base/tf/refBase.h -include/pxr/base/tf/refCount.h include/pxr/base/tf/refPtr.h include/pxr/base/tf/refPtrTracker.h include/pxr/base/tf/regTest.h include/pxr/base/tf/registryManager.h include/pxr/base/tf/safeOutputFile.h include/pxr/base/tf/safeTypeCompare.h include/pxr/base/tf/scopeDescription.h include/pxr/base/tf/scoped.h include/pxr/base/tf/setenv.h include/pxr/base/tf/singleton.h include/pxr/base/tf/smallVector.h include/pxr/base/tf/span.h +include/pxr/base/tf/spinMutex.h +include/pxr/base/tf/spinRWMutex.h include/pxr/base/tf/stackTrace.h include/pxr/base/tf/stacked.h include/pxr/base/tf/staticData.h include/pxr/base/tf/staticTokens.h include/pxr/base/tf/status.h include/pxr/base/tf/stl.h include/pxr/base/tf/stopwatch.h include/pxr/base/tf/stringUtils.h -include/pxr/base/tf/templateString.h include/pxr/base/tf/tf.h include/pxr/base/tf/token.h include/pxr/base/tf/type.h include/pxr/base/tf/typeFunctions.h include/pxr/base/tf/typeInfoMap.h include/pxr/base/tf/typeNotice.h include/pxr/base/tf/type_Impl.h +include/pxr/base/tf/unicodeUtils.h include/pxr/base/tf/warning.h include/pxr/base/tf/weakBase.h include/pxr/base/tf/weakPtr.h include/pxr/base/tf/weakPtrFacade.h include/pxr/base/trace/aggregateNode.h include/pxr/base/trace/aggregateTree.h include/pxr/base/trace/api.h include/pxr/base/trace/category.h include/pxr/base/trace/collection.h include/pxr/base/trace/collectionNotice.h include/pxr/base/trace/collector.h include/pxr/base/trace/concurrentList.h include/pxr/base/trace/counterAccumulator.h include/pxr/base/trace/dataBuffer.h include/pxr/base/trace/dynamicKey.h include/pxr/base/trace/event.h include/pxr/base/trace/eventContainer.h include/pxr/base/trace/eventData.h include/pxr/base/trace/eventList.h include/pxr/base/trace/eventNode.h include/pxr/base/trace/eventTree.h include/pxr/base/trace/key.h include/pxr/base/trace/reporter.h include/pxr/base/trace/reporterBase.h include/pxr/base/trace/reporterDataSourceBase.h include/pxr/base/trace/reporterDataSourceCollection.h include/pxr/base/trace/reporterDataSourceCollector.h include/pxr/base/trace/serialization.h include/pxr/base/trace/staticKeyData.h include/pxr/base/trace/stringHash.h include/pxr/base/trace/threads.h include/pxr/base/trace/trace.h +include/pxr/base/ts/api.h +include/pxr/base/ts/binary.h +include/pxr/base/ts/debugCodes.h +include/pxr/base/ts/eval.h +include/pxr/base/ts/knot.h +include/pxr/base/ts/knotData.h +include/pxr/base/ts/knotMap.h +include/pxr/base/ts/raii.h +include/pxr/base/ts/regressionPreventer.h +include/pxr/base/ts/spline.h +include/pxr/base/ts/splineData.h +include/pxr/base/ts/tangentConversions.h +include/pxr/base/ts/typeHelpers.h +include/pxr/base/ts/types.h +include/pxr/base/ts/valueTypeDispatch.h include/pxr/base/vt/api.h include/pxr/base/vt/array.h +include/pxr/base/vt/arrayEdit.h +include/pxr/base/vt/arrayEditBuilder.h +include/pxr/base/vt/arrayEditOps.h +include/pxr/base/vt/debugCodes.h include/pxr/base/vt/dictionary.h -include/pxr/base/vt/functions.h include/pxr/base/vt/hash.h -include/pxr/base/vt/operators.h include/pxr/base/vt/streamOut.h include/pxr/base/vt/traits.h +include/pxr/base/vt/typeHeaders.h include/pxr/base/vt/types.h include/pxr/base/vt/value.h +include/pxr/base/vt/visitValue.h include/pxr/base/work/api.h include/pxr/base/work/detachedTask.h include/pxr/base/work/dispatcher.h +include/pxr/base/work/impl.h +include/pxr/base/work/isolatingDispatcher.h include/pxr/base/work/loops.h include/pxr/base/work/reduce.h include/pxr/base/work/singularTask.h +include/pxr/base/work/sort.h +include/pxr/base/work/taskGraph.h +include/pxr/base/work/taskGraph_defaultImpl.h include/pxr/base/work/threadLimits.h include/pxr/base/work/utils.h include/pxr/base/work/withScopedParallelism.h +include/pxr/base/work/workTBB/detachedTask_impl.h +include/pxr/base/work/workTBB/dispatcher_impl.h +include/pxr/base/work/workTBB/impl.h +include/pxr/base/work/workTBB/isolatingDispatcher_impl.h +include/pxr/base/work/workTBB/loops_impl.h +include/pxr/base/work/workTBB/reduce_impl.h +include/pxr/base/work/workTBB/sort_impl.h +include/pxr/base/work/workTBB/taskGraph_impl.h +include/pxr/base/work/workTBB/threadLimits_impl.h +include/pxr/base/work/workTBB/withScopedParallelism_impl.h +include/pxr/base/work/zeroAllocator.h +include/pxr/exec/ef/api.h +include/pxr/exec/ef/dependencyCache.h +include/pxr/exec/ef/executor.h +include/pxr/exec/ef/firstValidInputValue.h +include/pxr/exec/ef/inputValueBlock.h +include/pxr/exec/ef/leafNode.h +include/pxr/exec/ef/leafNodeCache.h +include/pxr/exec/ef/leafNodeIndexer.h +include/pxr/exec/ef/loftedOutputSet.h +include/pxr/exec/ef/maskedSubExecutor.h +include/pxr/exec/ef/outputValueCache.h +include/pxr/exec/ef/pageCache.h +include/pxr/exec/ef/pageCacheBasedExecutor.h +include/pxr/exec/ef/pageCacheCommitRequest.h +include/pxr/exec/ef/pageCacheExecutor.h +include/pxr/exec/ef/pageCacheStorage.h +include/pxr/exec/ef/pageCacheSubExecutor.h +include/pxr/exec/ef/subExecutor.h +include/pxr/exec/ef/time.h +include/pxr/exec/ef/timeInputNode.h +include/pxr/exec/ef/timeInterval.h +include/pxr/exec/ef/vectorKey.h +include/pxr/exec/esf/api.h +include/pxr/exec/esf/attribute.h +include/pxr/exec/esf/attributeQuery.h +include/pxr/exec/esf/editReason.h +include/pxr/exec/esf/fixedSizePolymorphicHolder.h +include/pxr/exec/esf/journal.h +include/pxr/exec/esf/object.h +include/pxr/exec/esf/prim.h +include/pxr/exec/esf/property.h +include/pxr/exec/esf/relationship.h +include/pxr/exec/esf/schemaConfigKey.h +include/pxr/exec/esf/stage.h +include/pxr/exec/esfUsd/api.h +include/pxr/exec/esfUsd/sceneAdapter.h +include/pxr/exec/exec/api.h +include/pxr/exec/exec/builtinComputations.h +include/pxr/exec/exec/cacheView.h +include/pxr/exec/exec/computationBuilders.h +include/pxr/exec/exec/debugCodes.h +include/pxr/exec/exec/providerResolution.h +include/pxr/exec/exec/registerSchema.h +include/pxr/exec/exec/request.h +include/pxr/exec/exec/requestImpl.h +include/pxr/exec/exec/system.h +include/pxr/exec/exec/systemChangeProcessor.h +include/pxr/exec/exec/systemDiagnostics.h +include/pxr/exec/exec/typeRegistry.h +include/pxr/exec/exec/types.h +include/pxr/exec/exec/valueExtractorFunction.h +include/pxr/exec/exec/valueKey.h +include/pxr/exec/execGeom/api.h +include/pxr/exec/execGeom/tokens.h +include/pxr/exec/execUsd/api.h +include/pxr/exec/execUsd/cacheView.h +include/pxr/exec/execUsd/request.h +include/pxr/exec/execUsd/system.h +include/pxr/exec/execUsd/valueKey.h +include/pxr/exec/vdf/allocateBoxedValue.h +include/pxr/exec/vdf/api.h +include/pxr/exec/vdf/boxedContainer.h +include/pxr/exec/vdf/boxedContainerTraits.h +include/pxr/exec/vdf/compressedIndexMapping.h +include/pxr/exec/vdf/connection.h +include/pxr/exec/vdf/connectorMap.h +include/pxr/exec/vdf/connectorSpecs.h +include/pxr/exec/vdf/context.h +include/pxr/exec/vdf/countingIterator.h +include/pxr/exec/vdf/dataManagerBasedExecutor.h +include/pxr/exec/vdf/dataManagerBasedSubExecutor.h +include/pxr/exec/vdf/dataManagerFacade.h +include/pxr/exec/vdf/dataManagerHashTable.h +include/pxr/exec/vdf/dataManagerVector.h +include/pxr/exec/vdf/datalessExecutor.h +include/pxr/exec/vdf/debugCodes.h +include/pxr/exec/vdf/defaultInitAllocator.h +include/pxr/exec/vdf/error.h +include/pxr/exec/vdf/estimateSize.h +include/pxr/exec/vdf/evaluationState.h +include/pxr/exec/vdf/execNodeDebugName.h +include/pxr/exec/vdf/executionStats.h +include/pxr/exec/vdf/executionStatsProcessor.h +include/pxr/exec/vdf/executionTypeRegistry.h +include/pxr/exec/vdf/executorBufferData.h +include/pxr/exec/vdf/executorDataManager.h +include/pxr/exec/vdf/executorDataManagerInterface.h +include/pxr/exec/vdf/executorDataVector.h +include/pxr/exec/vdf/executorErrorLogger.h +include/pxr/exec/vdf/executorFactory.h +include/pxr/exec/vdf/executorFactoryBase.h +include/pxr/exec/vdf/executorInterface.h +include/pxr/exec/vdf/executorInvalidationData.h +include/pxr/exec/vdf/executorInvalidator.h +include/pxr/exec/vdf/executorObserver.h +include/pxr/exec/vdf/extensibleNode.h +include/pxr/exec/vdf/fixedSizeHolder.h +include/pxr/exec/vdf/fixedSizePolymorphicHolder.h +include/pxr/exec/vdf/forEachCommonType.h +include/pxr/exec/vdf/grapher.h +include/pxr/exec/vdf/grapherOptions.h +include/pxr/exec/vdf/indexedData.h +include/pxr/exec/vdf/indexedDataIterator.h +include/pxr/exec/vdf/indexedWeights.h +include/pxr/exec/vdf/indexedWeightsOperand.h +include/pxr/exec/vdf/input.h +include/pxr/exec/vdf/inputAndOutputSpecs.h +include/pxr/exec/vdf/inputSpec.h +include/pxr/exec/vdf/inputValuesPointer.h +include/pxr/exec/vdf/inputVector.h +include/pxr/exec/vdf/isolatedSubnetwork.h +include/pxr/exec/vdf/iterator.h +include/pxr/exec/vdf/iteratorRange.h +include/pxr/exec/vdf/iterators.h +include/pxr/exec/vdf/lruCache.h +include/pxr/exec/vdf/mask.h +include/pxr/exec/vdf/maskMemoizer.h +include/pxr/exec/vdf/maskedIterator.h +include/pxr/exec/vdf/maskedOutput.h +include/pxr/exec/vdf/maskedOutputVector.h +include/pxr/exec/vdf/network.h +include/pxr/exec/vdf/networkStats.h +include/pxr/exec/vdf/networkUtil.h +include/pxr/exec/vdf/node.h +include/pxr/exec/vdf/nodeProcessInvalidationInterface.h +include/pxr/exec/vdf/nodeSet.h +include/pxr/exec/vdf/object.h +include/pxr/exec/vdf/output.h +include/pxr/exec/vdf/outputSpec.h +include/pxr/exec/vdf/parallelDataManagerVector.h +include/pxr/exec/vdf/parallelExecutorDataManager.h +include/pxr/exec/vdf/parallelExecutorDataManagerInterface.h +include/pxr/exec/vdf/parallelExecutorDataVector.h +include/pxr/exec/vdf/parallelExecutorEngine.h +include/pxr/exec/vdf/parallelExecutorEngineBase.h +include/pxr/exec/vdf/parallelSpeculationExecutorEngine.h +include/pxr/exec/vdf/parallelTaskSync.h +include/pxr/exec/vdf/parallelTaskWaitlist.h +include/pxr/exec/vdf/poolChainIndex.h +include/pxr/exec/vdf/pullBasedExecutorEngine.h +include/pxr/exec/vdf/rawValueAccessor.h +include/pxr/exec/vdf/readIterator.h +include/pxr/exec/vdf/readIteratorRange.h +include/pxr/exec/vdf/readWriteAccessor.h +include/pxr/exec/vdf/readWriteIterator.h +include/pxr/exec/vdf/readWriteIteratorRange.h +include/pxr/exec/vdf/request.h +include/pxr/exec/vdf/requiredInputsPredicate.h +include/pxr/exec/vdf/rootNode.h +include/pxr/exec/vdf/schedule.h +include/pxr/exec/vdf/scheduleNode.h +include/pxr/exec/vdf/scheduleTasks.h +include/pxr/exec/vdf/scheduler.h +include/pxr/exec/vdf/simpleExecutor.h +include/pxr/exec/vdf/smblData.h +include/pxr/exec/vdf/sparseInputPathFinder.h +include/pxr/exec/vdf/sparseInputTraverser.h +include/pxr/exec/vdf/sparseOutputTraverser.h +include/pxr/exec/vdf/sparseVectorizedInputTraverser.h +include/pxr/exec/vdf/sparseVectorizedOutputTraverser.h +include/pxr/exec/vdf/speculationExecutor.h +include/pxr/exec/vdf/speculationExecutorBase.h +include/pxr/exec/vdf/speculationExecutorEngine.h +include/pxr/exec/vdf/speculationNode.h +include/pxr/exec/vdf/subrangeView.h +include/pxr/exec/vdf/testUtils.h +include/pxr/exec/vdf/tokens.h +include/pxr/exec/vdf/traits.h +include/pxr/exec/vdf/typeDispatchTable.h +include/pxr/exec/vdf/typedVector.h +include/pxr/exec/vdf/types.h +include/pxr/exec/vdf/vector.h +include/pxr/exec/vdf/vectorAccessor.h +include/pxr/exec/vdf/vectorData.h +include/pxr/exec/vdf/vectorDataTyped.h +include/pxr/exec/vdf/vectorImpl_Boxed.h +include/pxr/exec/vdf/vectorImpl_Compressed.h +include/pxr/exec/vdf/vectorImpl_Contiguous.h +include/pxr/exec/vdf/vectorImpl_Dispatch.h +include/pxr/exec/vdf/vectorImpl_Empty.h +include/pxr/exec/vdf/vectorImpl_Shared.h +include/pxr/exec/vdf/vectorImpl_Single.h +include/pxr/exec/vdf/vectorSubrangeAccessor.h +include/pxr/exec/vdf/weightedIterator.h +%%IMAGING%%include/pxr/imaging/cameraUtil/api.h +%%IMAGING%%include/pxr/imaging/cameraUtil/conformWindow.h +%%IMAGING%%include/pxr/imaging/cameraUtil/framing.h +%%IMAGING%%include/pxr/imaging/cameraUtil/screenWindowParameters.h +%%IMAGING%%include/pxr/imaging/garch/api.h +%%IMAGING%%include/pxr/imaging/garch/gl.h +%%IMAGING%%include/pxr/imaging/garch/glApi.h +%%IMAGING%%include/pxr/imaging/garch/glDebugWindow.h +%%IMAGING%%include/pxr/imaging/garch/glPlatformContext.h +%%IMAGING%%include/pxr/imaging/garch/glPlatformContextGLX.h +%%IMAGING%%include/pxr/imaging/garch/glPlatformDebugContext.h +%%IMAGING%%include/pxr/imaging/garch/khrplatform.h +%%IMAGING%%include/pxr/imaging/geomUtil/api.h +%%IMAGING%%include/pxr/imaging/geomUtil/capsuleMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/coneMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/cuboidMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/cylinderMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/diskMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/meshGeneratorBase.h +%%IMAGING%%include/pxr/imaging/geomUtil/planeMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/sphereMeshGenerator.h +%%IMAGING%%include/pxr/imaging/geomUtil/tokens.h +%%IMAGING%%include/pxr/imaging/glf/api.h +%%IMAGING%%include/pxr/imaging/glf/bindingMap.h +%%IMAGING%%include/pxr/imaging/glf/contextCaps.h +%%IMAGING%%include/pxr/imaging/glf/diagnostic.h +%%IMAGING%%include/pxr/imaging/glf/drawTarget.h +%%IMAGING%%include/pxr/imaging/glf/glContext.h +%%IMAGING%%include/pxr/imaging/glf/glRawContext.h +%%IMAGING%%include/pxr/imaging/glf/info.h +%%IMAGING%%include/pxr/imaging/glf/simpleLight.h +%%IMAGING%%include/pxr/imaging/glf/simpleLightingContext.h +%%IMAGING%%include/pxr/imaging/glf/simpleMaterial.h +%%IMAGING%%include/pxr/imaging/glf/simpleShadowArray.h +%%IMAGING%%include/pxr/imaging/glf/testGLContext.h +%%IMAGING%%include/pxr/imaging/glf/texture.h +%%IMAGING%%include/pxr/imaging/glf/uniformBlock.h +%%IMAGING%%include/pxr/imaging/glf/utils.h +%%IMAGING%%include/pxr/imaging/hd/aov.h +%%IMAGING%%include/pxr/imaging/hd/api.h +%%IMAGING%%include/pxr/imaging/hd/basisCurves.h +%%IMAGING%%include/pxr/imaging/hd/basisCurvesSchema.h +%%IMAGING%%include/pxr/imaging/hd/basisCurvesTopology.h +%%IMAGING%%include/pxr/imaging/hd/basisCurvesTopologySchema.h +%%IMAGING%%include/pxr/imaging/hd/bprim.h +%%IMAGING%%include/pxr/imaging/hd/bufferArray.h +%%IMAGING%%include/pxr/imaging/hd/bufferArrayRange.h +%%IMAGING%%include/pxr/imaging/hd/bufferSource.h +%%IMAGING%%include/pxr/imaging/hd/bufferSpec.h +%%IMAGING%%include/pxr/imaging/hd/builtinMaterialSchema.h +%%IMAGING%%include/pxr/imaging/hd/cachingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/camera.h +%%IMAGING%%include/pxr/imaging/hd/cameraSchema.h +%%IMAGING%%include/pxr/imaging/hd/capsuleSchema.h +%%IMAGING%%include/pxr/imaging/hd/categoriesSchema.h +%%IMAGING%%include/pxr/imaging/hd/changeTracker.h +%%IMAGING%%include/pxr/imaging/hd/collectionExpressionEvaluator.h +%%IMAGING%%include/pxr/imaging/hd/collectionPredicateLibrary.h +%%IMAGING%%include/pxr/imaging/hd/collectionSchema.h +%%IMAGING%%include/pxr/imaging/hd/collectionsSchema.h +%%IMAGING%%include/pxr/imaging/hd/command.h +%%IMAGING%%include/pxr/imaging/hd/coneSchema.h +%%IMAGING%%include/pxr/imaging/hd/containerDataSourceEditor.h +%%IMAGING%%include/pxr/imaging/hd/containerSchema.h +%%IMAGING%%include/pxr/imaging/hd/coordSys.h +%%IMAGING%%include/pxr/imaging/hd/coordSysBindingSchema.h +%%IMAGING%%include/pxr/imaging/hd/coordSysSchema.h +%%IMAGING%%include/pxr/imaging/hd/cubeSchema.h +%%IMAGING%%include/pxr/imaging/hd/cylinderSchema.h +%%IMAGING%%include/pxr/imaging/hd/dataSource.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceHash.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceLegacyPrim.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceLegacyTaskPrim.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceLocator.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceMaterialNetworkInterface.h +%%IMAGING%%include/pxr/imaging/hd/dataSourceTypeDefs.h +%%IMAGING%%include/pxr/imaging/hd/debugCodes.h +%%IMAGING%%include/pxr/imaging/hd/dependenciesSchema.h +%%IMAGING%%include/pxr/imaging/hd/dependencyForwardingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/dependencySchema.h +%%IMAGING%%include/pxr/imaging/hd/dirtyBitsTranslator.h +%%IMAGING%%include/pxr/imaging/hd/dirtyList.h +%%IMAGING%%include/pxr/imaging/hd/displayFilterSchema.h +%%IMAGING%%include/pxr/imaging/hd/drawItem.h +%%IMAGING%%include/pxr/imaging/hd/drawingCoord.h +%%IMAGING%%include/pxr/imaging/hd/driver.h +%%IMAGING%%include/pxr/imaging/hd/engine.h +%%IMAGING%%include/pxr/imaging/hd/enums.h +%%IMAGING%%include/pxr/imaging/hd/extComputation.h +%%IMAGING%%include/pxr/imaging/hd/extComputationContext.h +%%IMAGING%%include/pxr/imaging/hd/extComputationContextInternal.h +%%IMAGING%%include/pxr/imaging/hd/extComputationCpuCallback.h +%%IMAGING%%include/pxr/imaging/hd/extComputationInputComputationSchema.h +%%IMAGING%%include/pxr/imaging/hd/extComputationOutputSchema.h +%%IMAGING%%include/pxr/imaging/hd/extComputationPrimvarSchema.h +%%IMAGING%%include/pxr/imaging/hd/extComputationPrimvarsSchema.h +%%IMAGING%%include/pxr/imaging/hd/extComputationSchema.h +%%IMAGING%%include/pxr/imaging/hd/extComputationUtils.h +%%IMAGING%%include/pxr/imaging/hd/extentSchema.h +%%IMAGING%%include/pxr/imaging/hd/field.h +%%IMAGING%%include/pxr/imaging/hd/filteringSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/flatNormals.h +%%IMAGING%%include/pxr/imaging/hd/flattenedDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flattenedDataSourceProviders.h +%%IMAGING%%include/pxr/imaging/hd/flattenedOverlayDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flattenedPrimvarsDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flattenedPurposeDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flattenedVisibilityDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flattenedXformDataSourceProvider.h +%%IMAGING%%include/pxr/imaging/hd/flatteningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/geomSubset.h +%%IMAGING%%include/pxr/imaging/hd/geomSubsetSchema.h +%%IMAGING%%include/pxr/imaging/hd/imageShader.h +%%IMAGING%%include/pxr/imaging/hd/imageShaderSchema.h +%%IMAGING%%include/pxr/imaging/hd/instanceCategoriesSchema.h +%%IMAGING%%include/pxr/imaging/hd/instanceIndicesSchema.h +%%IMAGING%%include/pxr/imaging/hd/instanceRegistry.h +%%IMAGING%%include/pxr/imaging/hd/instanceSchema.h +%%IMAGING%%include/pxr/imaging/hd/instancedBySchema.h +%%IMAGING%%include/pxr/imaging/hd/instancer.h +%%IMAGING%%include/pxr/imaging/hd/instancerTopologySchema.h +%%IMAGING%%include/pxr/imaging/hd/integratorSchema.h +%%IMAGING%%include/pxr/imaging/hd/invalidatableContainerDataSource.h +%%IMAGING%%include/pxr/imaging/hd/lazyContainerDataSource.h +%%IMAGING%%include/pxr/imaging/hd/legacyDisplayStyleSchema.h +%%IMAGING%%include/pxr/imaging/hd/legacyGeomSubsetSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/legacyPrimSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/legacyTaskFactory.h +%%IMAGING%%include/pxr/imaging/hd/legacyTaskSchema.h +%%IMAGING%%include/pxr/imaging/hd/lensDistortionSchema.h +%%IMAGING%%include/pxr/imaging/hd/light.h +%%IMAGING%%include/pxr/imaging/hd/lightSchema.h +%%IMAGING%%include/pxr/imaging/hd/mapContainerDataSource.h +%%IMAGING%%include/pxr/imaging/hd/material.h +%%IMAGING%%include/pxr/imaging/hd/materialBindingSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialBindingsSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialConnectionSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialFilteringSceneIndexBase.h +%%IMAGING%%include/pxr/imaging/hd/materialInterfaceMappingSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialInterfaceParameterSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialInterfaceSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialNetwork2Interface.h +%%IMAGING%%include/pxr/imaging/hd/materialNetworkInterface.h +%%IMAGING%%include/pxr/imaging/hd/materialNetworkSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialNodeParameterSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialNodeSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialOverrideSchema.h +%%IMAGING%%include/pxr/imaging/hd/materialSchema.h +%%IMAGING%%include/pxr/imaging/hd/mergingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/mesh.h +%%IMAGING%%include/pxr/imaging/hd/meshSchema.h +%%IMAGING%%include/pxr/imaging/hd/meshTopology.h +%%IMAGING%%include/pxr/imaging/hd/meshTopologySchema.h +%%IMAGING%%include/pxr/imaging/hd/meshUtil.h +%%IMAGING%%include/pxr/imaging/hd/noticeBatchingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/nurbsCurvesSchema.h +%%IMAGING%%include/pxr/imaging/hd/nurbsPatchSchema.h +%%IMAGING%%include/pxr/imaging/hd/nurbsPatchTrimCurveSchema.h +%%IMAGING%%include/pxr/imaging/hd/overlayContainerDataSource.h +%%IMAGING%%include/pxr/imaging/hd/perfLog.h +%%IMAGING%%include/pxr/imaging/hd/planeSchema.h +%%IMAGING%%include/pxr/imaging/hd/pluginRenderDelegateUniqueHandle.h +%%IMAGING%%include/pxr/imaging/hd/pluginRendererUniqueHandle.h +%%IMAGING%%include/pxr/imaging/hd/points.h +%%IMAGING%%include/pxr/imaging/hd/prefixingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/primGather.h +%%IMAGING%%include/pxr/imaging/hd/primOriginSchema.h +%%IMAGING%%include/pxr/imaging/hd/primTypeIndex.h +%%IMAGING%%include/pxr/imaging/hd/primvarSchema.h +%%IMAGING%%include/pxr/imaging/hd/primvarsSchema.h +%%IMAGING%%include/pxr/imaging/hd/purposeSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderBuffer.h +%%IMAGING%%include/pxr/imaging/hd/renderBufferSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderCapabilitiesSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderDelegate.h +%%IMAGING%%include/pxr/imaging/hd/renderIndex.h +%%IMAGING%%include/pxr/imaging/hd/renderPass.h +%%IMAGING%%include/pxr/imaging/hd/renderPassSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderPassState.h +%%IMAGING%%include/pxr/imaging/hd/renderProductSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderSettings.h +%%IMAGING%%include/pxr/imaging/hd/renderSettingsSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderThread.h +%%IMAGING%%include/pxr/imaging/hd/renderVarSchema.h +%%IMAGING%%include/pxr/imaging/hd/renderer.h +%%IMAGING%%include/pxr/imaging/hd/rendererCreateArgs.h +%%IMAGING%%include/pxr/imaging/hd/rendererPlugin.h +%%IMAGING%%include/pxr/imaging/hd/rendererPluginHandle.h +%%IMAGING%%include/pxr/imaging/hd/rendererPluginRegistry.h +%%IMAGING%%include/pxr/imaging/hd/repr.h +%%IMAGING%%include/pxr/imaging/hd/resourceRegistry.h +%%IMAGING%%include/pxr/imaging/hd/retainedDataSource.h +%%IMAGING%%include/pxr/imaging/hd/retainedSceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/rprim.h +%%IMAGING%%include/pxr/imaging/hd/rprimCollection.h +%%IMAGING%%include/pxr/imaging/hd/rprimSharedData.h +%%IMAGING%%include/pxr/imaging/hd/sampleFilterSchema.h +%%IMAGING%%include/pxr/imaging/hd/sceneDelegate.h +%%IMAGING%%include/pxr/imaging/hd/sceneGlobalsSchema.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndex.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexAdapterSceneDelegate.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexObserver.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexPluginRegistry.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexPrimView.h +%%IMAGING%%include/pxr/imaging/hd/sceneIndexUtil.h +%%IMAGING%%include/pxr/imaging/hd/schema.h +%%IMAGING%%include/pxr/imaging/hd/schemaTypeDefs.h +%%IMAGING%%include/pxr/imaging/hd/selection.h +%%IMAGING%%include/pxr/imaging/hd/selectionSchema.h +%%IMAGING%%include/pxr/imaging/hd/selectionsSchema.h +%%IMAGING%%include/pxr/imaging/hd/smoothNormals.h +%%IMAGING%%include/pxr/imaging/hd/sortedIds.h +%%IMAGING%%include/pxr/imaging/hd/sphereSchema.h +%%IMAGING%%include/pxr/imaging/hd/splitDiopterSchema.h +%%IMAGING%%include/pxr/imaging/hd/sprim.h +%%IMAGING%%include/pxr/imaging/hd/subdivisionTagsSchema.h +%%IMAGING%%include/pxr/imaging/hd/systemMessages.h +%%IMAGING%%include/pxr/imaging/hd/systemSchema.h +%%IMAGING%%include/pxr/imaging/hd/task.h +%%IMAGING%%include/pxr/imaging/hd/tetMeshSchema.h +%%IMAGING%%include/pxr/imaging/hd/tetMeshTopologySchema.h +%%IMAGING%%include/pxr/imaging/hd/timeSampleArray.h +%%IMAGING%%include/pxr/imaging/hd/tokens.h +%%IMAGING%%include/pxr/imaging/hd/topology.h +%%IMAGING%%include/pxr/imaging/hd/types.h +%%IMAGING%%include/pxr/imaging/hd/unitTestDelegate.h +%%IMAGING%%include/pxr/imaging/hd/unitTestHelper.h +%%IMAGING%%include/pxr/imaging/hd/unitTestNullRenderDelegate.h +%%IMAGING%%include/pxr/imaging/hd/unitTestNullRenderPass.h +%%IMAGING%%include/pxr/imaging/hd/utils.h +%%IMAGING%%include/pxr/imaging/hd/vectorSchema.h +%%IMAGING%%include/pxr/imaging/hd/vectorSchemaTypeDefs.h +%%IMAGING%%include/pxr/imaging/hd/version.h +%%IMAGING%%include/pxr/imaging/hd/vertexAdjacency.h +%%IMAGING%%include/pxr/imaging/hd/visibilitySchema.h +%%IMAGING%%include/pxr/imaging/hd/volume.h +%%IMAGING%%include/pxr/imaging/hd/volumeFieldBindingSchema.h +%%IMAGING%%include/pxr/imaging/hd/volumeFieldSchema.h +%%IMAGING%%include/pxr/imaging/hd/vtBufferSource.h +%%IMAGING%%include/pxr/imaging/hd/xformSchema.h +%%IMAGING%%include/pxr/imaging/hdGp/api.h +%%IMAGING%%include/pxr/imaging/hdGp/generativeProcedural.h +%%IMAGING%%include/pxr/imaging/hdGp/generativeProceduralFilteringSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdGp/generativeProceduralPlugin.h +%%IMAGING%%include/pxr/imaging/hdGp/generativeProceduralPluginRegistry.h +%%IMAGING%%include/pxr/imaging/hdGp/generativeProceduralResolvingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdGp/sceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/api.h +%%IMAGING%%include/pxr/imaging/hdSt/basisCurves.h +%%IMAGING%%include/pxr/imaging/hdSt/binding.h +%%IMAGING%%include/pxr/imaging/hdSt/bufferArrayRange.h +%%IMAGING%%include/pxr/imaging/hdSt/bufferArrayRegistry.h +%%IMAGING%%include/pxr/imaging/hdSt/bufferResource.h +%%IMAGING%%include/pxr/imaging/hdSt/bufferUtils.h +%%IMAGING%%include/pxr/imaging/hdSt/commandBuffer.h +%%IMAGING%%include/pxr/imaging/hdSt/computation.h +%%IMAGING%%include/pxr/imaging/hdSt/copyComputation.h +%%IMAGING%%include/pxr/imaging/hdSt/debugCodes.h +%%IMAGING%%include/pxr/imaging/hdSt/dependencyForwardingSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/dependencySceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/dispatchBuffer.h +%%IMAGING%%include/pxr/imaging/hdSt/domeLightComputations.h +%%IMAGING%%include/pxr/imaging/hdSt/drawItem.h +%%IMAGING%%include/pxr/imaging/hdSt/drawItemInstance.h +%%IMAGING%%include/pxr/imaging/hdSt/drawTarget.h +%%IMAGING%%include/pxr/imaging/hdSt/drawTargetRenderPassState.h +%%IMAGING%%include/pxr/imaging/hdSt/dynamicCubemapTextureImplementation.h +%%IMAGING%%include/pxr/imaging/hdSt/dynamicCubemapTextureObject.h +%%IMAGING%%include/pxr/imaging/hdSt/dynamicUvTextureImplementation.h +%%IMAGING%%include/pxr/imaging/hdSt/dynamicUvTextureObject.h +%%IMAGING%%include/pxr/imaging/hdSt/enums.h +%%IMAGING%%include/pxr/imaging/hdSt/extCompCpuComputation.h +%%IMAGING%%include/pxr/imaging/hdSt/extCompGpuComputation.h +%%IMAGING%%include/pxr/imaging/hdSt/extCompGpuComputationResource.h +%%IMAGING%%include/pxr/imaging/hdSt/extCompGpuPrimvarBufferSource.h +%%IMAGING%%include/pxr/imaging/hdSt/extCompPrimvarBufferSource.h +%%IMAGING%%include/pxr/imaging/hdSt/extComputation.h +%%IMAGING%%include/pxr/imaging/hdSt/fallbackLightingShader.h +%%IMAGING%%include/pxr/imaging/hdSt/field.h +%%IMAGING%%include/pxr/imaging/hdSt/fieldSubtextureIdentifier.h +%%IMAGING%%include/pxr/imaging/hdSt/flatNormals.h +%%IMAGING%%include/pxr/imaging/hdSt/geometricShader.h +%%IMAGING%%include/pxr/imaging/hdSt/glConversions.h +%%IMAGING%%include/pxr/imaging/hdSt/glslProgram.h +%%IMAGING%%include/pxr/imaging/hdSt/glslfxShader.h +%%IMAGING%%include/pxr/imaging/hdSt/hgiConversions.h +%%IMAGING%%include/pxr/imaging/hdSt/hioConversions.h +%%IMAGING%%include/pxr/imaging/hdSt/imageShaderRenderPass.h +%%IMAGING%%include/pxr/imaging/hdSt/implicitSurfaceSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/instancer.h +%%IMAGING%%include/pxr/imaging/hdSt/interleavedMemoryManager.h +%%IMAGING%%include/pxr/imaging/hdSt/light.h +%%IMAGING%%include/pxr/imaging/hdSt/lightingShader.h +%%IMAGING%%include/pxr/imaging/hdSt/material.h +%%IMAGING%%include/pxr/imaging/hdSt/materialNetwork.h +%%IMAGING%%include/pxr/imaging/hdSt/mesh.h +%%IMAGING%%include/pxr/imaging/hdSt/nurbsApproximatingSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/package.h +%%IMAGING%%include/pxr/imaging/hdSt/points.h +%%IMAGING%%include/pxr/imaging/hdSt/primUtils.h +%%IMAGING%%include/pxr/imaging/hdSt/ptexTextureObject.h +%%IMAGING%%include/pxr/imaging/hdSt/renderBuffer.h +%%IMAGING%%include/pxr/imaging/hdSt/renderBufferPool.h +%%IMAGING%%include/pxr/imaging/hdSt/renderDelegate.h +%%IMAGING%%include/pxr/imaging/hdSt/renderParam.h +%%IMAGING%%include/pxr/imaging/hdSt/renderPass.h +%%IMAGING%%include/pxr/imaging/hdSt/renderPassShader.h +%%IMAGING%%include/pxr/imaging/hdSt/renderPassState.h +%%IMAGING%%include/pxr/imaging/hdSt/resourceRegistry.h +%%IMAGING%%include/pxr/imaging/hdSt/samplerObject.h +%%IMAGING%%include/pxr/imaging/hdSt/samplerObjectRegistry.h +%%IMAGING%%include/pxr/imaging/hdSt/shaderCode.h +%%IMAGING%%include/pxr/imaging/hdSt/simpleLightingShader.h +%%IMAGING%%include/pxr/imaging/hdSt/smoothNormals.h +%%IMAGING%%include/pxr/imaging/hdSt/stagingBuffer.h +%%IMAGING%%include/pxr/imaging/hdSt/strategyBase.h +%%IMAGING%%include/pxr/imaging/hdSt/subtextureIdentifier.h +%%IMAGING%%include/pxr/imaging/hdSt/tetMeshConversionSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/textureBinder.h +%%IMAGING%%include/pxr/imaging/hdSt/textureCpuData.h +%%IMAGING%%include/pxr/imaging/hdSt/textureHandle.h +%%IMAGING%%include/pxr/imaging/hdSt/textureHandleRegistry.h +%%IMAGING%%include/pxr/imaging/hdSt/textureIdentifier.h +%%IMAGING%%include/pxr/imaging/hdSt/textureObject.h +%%IMAGING%%include/pxr/imaging/hdSt/textureObjectRegistry.h +%%IMAGING%%include/pxr/imaging/hdSt/textureUtils.h +%%IMAGING%%include/pxr/imaging/hdSt/tokens.h +%%IMAGING%%include/pxr/imaging/hdSt/udimTextureObject.h +%%IMAGING%%include/pxr/imaging/hdSt/unboundMaterialPruningSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/unitTestGLDrawing.h +%%IMAGING%%include/pxr/imaging/hdSt/vboMemoryManager.h +%%IMAGING%%include/pxr/imaging/hdSt/vboSimpleMemoryManager.h +%%IMAGING%%include/pxr/imaging/hdSt/velocityMotionResolvingSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdSt/volume.h +%%IMAGING%%include/pxr/imaging/hdStorm/rendererPlugin.h +%%IMAGING%%include/pxr/imaging/hdar/api.h +%%IMAGING%%include/pxr/imaging/hdar/systemSchema.h +%%IMAGING%%include/pxr/imaging/hdsi/api.h +%%IMAGING%%include/pxr/imaging/hdsi/computeSceneIndexDiff.h +%%IMAGING%%include/pxr/imaging/hdsi/coordSysPrimSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/debuggingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/debuggingSceneIndexPlugin.h +%%IMAGING%%include/pxr/imaging/hdsi/domeLightCameraVisibilitySceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/extComputationDependencySceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/extComputationPrimvarPruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/implicitSurfaceSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/legacyDisplayStyleOverrideSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/lightLinkingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/materialBindingResolvingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/materialOverrideResolvingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/materialPrimvarTransferSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/nodeIdentifierResolvingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/nurbsApproximatingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/pinnedCurveExpandingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/prefixPathPruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/primManagingSceneIndexObserver.h +%%IMAGING%%include/pxr/imaging/hdsi/primTypeAndPathPruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/primTypeNoticeBatchingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/primTypePruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/renderPassPruneSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/renderSettingsFilteringSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/sceneGlobalsSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/sceneMaterialPruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/switchingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/tetMeshConversionSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/unboundMaterialPruningSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/utils.h +%%IMAGING%%include/pxr/imaging/hdsi/velocityMotionResolvingSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdsi/version.h +%%IMAGING%%include/pxr/imaging/hdx/aovInputTask.h +%%IMAGING%%include/pxr/imaging/hdx/api.h +%%IMAGING%%include/pxr/imaging/hdx/boundingBoxTask.h +%%IMAGING%%include/pxr/imaging/hdx/colorChannelTask.h +%%IMAGING%%include/pxr/imaging/hdx/colorCorrectionTask.h +%%IMAGING%%include/pxr/imaging/hdx/colorizeSelectionTask.h +%%IMAGING%%include/pxr/imaging/hdx/drawTargetTask.h +%%IMAGING%%include/pxr/imaging/hdx/effectsShader.h +%%IMAGING%%include/pxr/imaging/hdx/freeCameraPrimDataSource.h +%%IMAGING%%include/pxr/imaging/hdx/freeCameraSceneDelegate.h +%%IMAGING%%include/pxr/imaging/hdx/fullscreenShader.h +%%IMAGING%%include/pxr/imaging/hdx/hgiConversions.h +%%IMAGING%%include/pxr/imaging/hdx/oitBufferAccessor.h +%%IMAGING%%include/pxr/imaging/hdx/oitRenderTask.h +%%IMAGING%%include/pxr/imaging/hdx/oitResolveTask.h +%%IMAGING%%include/pxr/imaging/hdx/oitVolumeRenderTask.h +%%IMAGING%%include/pxr/imaging/hdx/package.h +%%IMAGING%%include/pxr/imaging/hdx/pickFromRenderBufferTask.h +%%IMAGING%%include/pxr/imaging/hdx/pickTask.h +%%IMAGING%%include/pxr/imaging/hdx/presentTask.h +%%IMAGING%%include/pxr/imaging/hdx/renderSetupTask.h +%%IMAGING%%include/pxr/imaging/hdx/renderTask.h +%%IMAGING%%include/pxr/imaging/hdx/selectionSceneIndexObserver.h +%%IMAGING%%include/pxr/imaging/hdx/selectionTask.h +%%IMAGING%%include/pxr/imaging/hdx/selectionTracker.h +%%IMAGING%%include/pxr/imaging/hdx/shadowMatrixComputation.h +%%IMAGING%%include/pxr/imaging/hdx/shadowTask.h +%%IMAGING%%include/pxr/imaging/hdx/simpleLightTask.h +%%IMAGING%%include/pxr/imaging/hdx/skydomeTask.h +%%IMAGING%%include/pxr/imaging/hdx/stormCheck.h +%%IMAGING%%include/pxr/imaging/hdx/task.h +%%IMAGING%%include/pxr/imaging/hdx/taskController.h +%%IMAGING%%include/pxr/imaging/hdx/taskControllerSceneIndex.h +%%IMAGING%%include/pxr/imaging/hdx/tokens.h +%%IMAGING%%include/pxr/imaging/hdx/types.h +%%IMAGING%%include/pxr/imaging/hdx/version.h +%%IMAGING%%include/pxr/imaging/hdx/visualizeAovTask.h +%%IMAGING%%include/pxr/imaging/hf/api.h +%%IMAGING%%include/pxr/imaging/hf/diagnostic.h +%%IMAGING%%include/pxr/imaging/hf/perfLog.h +%%IMAGING%%include/pxr/imaging/hf/pluginBase.h +%%IMAGING%%include/pxr/imaging/hf/pluginDesc.h +%%IMAGING%%include/pxr/imaging/hf/pluginRegistry.h +%%IMAGING%%include/pxr/imaging/hgi/api.h +%%IMAGING%%include/pxr/imaging/hgi/attachmentDesc.h +%%IMAGING%%include/pxr/imaging/hgi/blitCmds.h +%%IMAGING%%include/pxr/imaging/hgi/blitCmdsOps.h +%%IMAGING%%include/pxr/imaging/hgi/buffer.h +%%IMAGING%%include/pxr/imaging/hgi/capabilities.h +%%IMAGING%%include/pxr/imaging/hgi/cmds.h +%%IMAGING%%include/pxr/imaging/hgi/computeCmds.h +%%IMAGING%%include/pxr/imaging/hgi/computeCmdsDesc.h +%%IMAGING%%include/pxr/imaging/hgi/computePipeline.h +%%IMAGING%%include/pxr/imaging/hgi/debugCodes.h +%%IMAGING%%include/pxr/imaging/hgi/enums.h +%%IMAGING%%include/pxr/imaging/hgi/graphicsCmds.h +%%IMAGING%%include/pxr/imaging/hgi/graphicsCmdsDesc.h +%%IMAGING%%include/pxr/imaging/hgi/graphicsPipeline.h +%%IMAGING%%include/pxr/imaging/hgi/handle.h +%%IMAGING%%include/pxr/imaging/hgi/hgi.h +%%IMAGING%%include/pxr/imaging/hgi/indirectCommandEncoder.h +%%IMAGING%%include/pxr/imaging/hgi/resourceBindings.h +%%IMAGING%%include/pxr/imaging/hgi/sampler.h +%%IMAGING%%include/pxr/imaging/hgi/shaderFunction.h +%%IMAGING%%include/pxr/imaging/hgi/shaderFunctionDesc.h +%%IMAGING%%include/pxr/imaging/hgi/shaderGenerator.h +%%IMAGING%%include/pxr/imaging/hgi/shaderProgram.h +%%IMAGING%%include/pxr/imaging/hgi/shaderSection.h +%%IMAGING%%include/pxr/imaging/hgi/texture.h +%%IMAGING%%include/pxr/imaging/hgi/tokens.h +%%IMAGING%%include/pxr/imaging/hgi/types.h +%%IMAGING%%include/pxr/imaging/hgi/unitTestHelper.h +%%IMAGING%%include/pxr/imaging/hgi/version.h +%%IMAGING%%include/pxr/imaging/hgiGL/api.h +%%IMAGING%%include/pxr/imaging/hgiGL/blitCmds.h +%%IMAGING%%include/pxr/imaging/hgiGL/buffer.h +%%IMAGING%%include/pxr/imaging/hgiGL/capabilities.h +%%IMAGING%%include/pxr/imaging/hgiGL/computeCmds.h +%%IMAGING%%include/pxr/imaging/hgiGL/computePipeline.h +%%IMAGING%%include/pxr/imaging/hgiGL/contextArena.h +%%IMAGING%%include/pxr/imaging/hgiGL/debugCodes.h +%%IMAGING%%include/pxr/imaging/hgiGL/device.h +%%IMAGING%%include/pxr/imaging/hgiGL/garbageCollector.h +%%IMAGING%%include/pxr/imaging/hgiGL/graphicsCmds.h +%%IMAGING%%include/pxr/imaging/hgiGL/graphicsPipeline.h +%%IMAGING%%include/pxr/imaging/hgiGL/hgi.h +%%IMAGING%%include/pxr/imaging/hgiGL/ops.h +%%IMAGING%%include/pxr/imaging/hgiGL/resourceBindings.h +%%IMAGING%%include/pxr/imaging/hgiGL/sampler.h +%%IMAGING%%include/pxr/imaging/hgiGL/shaderFunction.h +%%IMAGING%%include/pxr/imaging/hgiGL/shaderProgram.h +%%IMAGING%%include/pxr/imaging/hgiGL/texture.h +%%IMAGING%%include/pxr/imaging/hgiInterop/api.h +%%IMAGING%%include/pxr/imaging/hgiInterop/hgiInterop.h +%%IMAGING%%include/pxr/imaging/hio/api.h +%%IMAGING%%include/pxr/imaging/hio/fieldTextureData.h +%%IMAGING%%include/pxr/imaging/hio/glslfx.h +%%IMAGING%%include/pxr/imaging/hio/glslfxConfig.h +%%IMAGING%%include/pxr/imaging/hio/glslfxResourceLayout.h +%%IMAGING%%include/pxr/imaging/hio/image.h +%%IMAGING%%include/pxr/imaging/hio/imageRegistry.h +%%IMAGING%%include/pxr/imaging/hio/types.h +%%IMAGING%%include/pxr/imaging/pxOsd/api.h +%%IMAGING%%include/pxr/imaging/pxOsd/meshTopology.h +%%IMAGING%%include/pxr/imaging/pxOsd/meshTopologyValidation.h +%%IMAGING%%include/pxr/imaging/pxOsd/refinerFactory.h +%%IMAGING%%include/pxr/imaging/pxOsd/subdivTags.h +%%IMAGING%%include/pxr/imaging/pxOsd/tokens.h include/pxr/pxr.h include/pxr/usd/ar/api.h include/pxr/usd/ar/ar.h include/pxr/usd/ar/asset.h include/pxr/usd/ar/assetInfo.h -include/pxr/usd/ar/asset_v2.h include/pxr/usd/ar/defaultResolver.h include/pxr/usd/ar/defaultResolverContext.h -include/pxr/usd/ar/defaultResolver_v2.h include/pxr/usd/ar/definePackageResolver.h include/pxr/usd/ar/defineResolver.h include/pxr/usd/ar/defineResolverContext.h include/pxr/usd/ar/filesystemAsset.h -include/pxr/usd/ar/filesystemAsset_v2.h include/pxr/usd/ar/filesystemWritableAsset.h +include/pxr/usd/ar/inMemoryAsset.h include/pxr/usd/ar/notice.h include/pxr/usd/ar/packageResolver.h include/pxr/usd/ar/packageUtils.h include/pxr/usd/ar/resolvedPath.h include/pxr/usd/ar/resolver.h include/pxr/usd/ar/resolverContext.h include/pxr/usd/ar/resolverContextBinder.h -include/pxr/usd/ar/resolverContext_v2.h include/pxr/usd/ar/resolverScopedCache.h -include/pxr/usd/ar/resolver_v2.h include/pxr/usd/ar/threadLocalScopedCache.h include/pxr/usd/ar/timestamp.h include/pxr/usd/ar/writableAsset.h include/pxr/usd/kind/api.h include/pxr/usd/kind/registry.h -include/pxr/usd/ndr/api.h -include/pxr/usd/ndr/debugCodes.h -include/pxr/usd/ndr/declare.h -include/pxr/usd/ndr/discoveryPlugin.h -include/pxr/usd/ndr/filesystemDiscovery.h -include/pxr/usd/ndr/filesystemDiscoveryHelpers.h -include/pxr/usd/ndr/node.h -include/pxr/usd/ndr/nodeDiscoveryResult.h -include/pxr/usd/ndr/parserPlugin.h -include/pxr/usd/ndr/property.h -include/pxr/usd/ndr/registry.h include/pxr/usd/pcp/api.h include/pxr/usd/pcp/arc.h include/pxr/usd/pcp/cache.h include/pxr/usd/pcp/changes.h include/pxr/usd/pcp/composeSite.h include/pxr/usd/pcp/dependency.h +include/pxr/usd/pcp/dependentNamespaceEditUtils.h include/pxr/usd/pcp/dynamicFileFormatContext.h include/pxr/usd/pcp/dynamicFileFormatDependencyData.h include/pxr/usd/pcp/dynamicFileFormatInterface.h include/pxr/usd/pcp/errors.h +include/pxr/usd/pcp/expressionVariables.h +include/pxr/usd/pcp/expressionVariablesDependencyData.h +include/pxr/usd/pcp/expressionVariablesSource.h include/pxr/usd/pcp/instanceKey.h include/pxr/usd/pcp/iterator.h -include/pxr/usd/pcp/layerPrefetchRequest.h +include/pxr/usd/pcp/layerRelocatesEditBuilder.h include/pxr/usd/pcp/layerStack.h include/pxr/usd/pcp/layerStackIdentifier.h include/pxr/usd/pcp/mapExpression.h include/pxr/usd/pcp/mapFunction.h include/pxr/usd/pcp/namespaceEdits.h include/pxr/usd/pcp/node.h include/pxr/usd/pcp/pathTranslation.h include/pxr/usd/pcp/primIndex.h include/pxr/usd/pcp/propertyIndex.h include/pxr/usd/pcp/site.h include/pxr/usd/pcp/strengthOrdering.h include/pxr/usd/pcp/targetIndex.h include/pxr/usd/pcp/types.h include/pxr/usd/sdf/abstractData.h include/pxr/usd/sdf/accessorHelpers.h include/pxr/usd/sdf/allowed.h include/pxr/usd/sdf/api.h include/pxr/usd/sdf/assetPath.h include/pxr/usd/sdf/attributeSpec.h +include/pxr/usd/sdf/booleanExpression.h include/pxr/usd/sdf/changeBlock.h include/pxr/usd/sdf/changeList.h include/pxr/usd/sdf/children.h include/pxr/usd/sdf/childrenPolicies.h include/pxr/usd/sdf/childrenProxy.h include/pxr/usd/sdf/childrenUtils.h include/pxr/usd/sdf/childrenView.h include/pxr/usd/sdf/cleanupEnabler.h include/pxr/usd/sdf/copyUtils.h +include/pxr/usd/sdf/crateInfo.h include/pxr/usd/sdf/data.h include/pxr/usd/sdf/declareHandles.h include/pxr/usd/sdf/declareSpec.h include/pxr/usd/sdf/fileFormat.h +include/pxr/usd/sdf/fileVersion.h include/pxr/usd/sdf/identity.h include/pxr/usd/sdf/layer.h include/pxr/usd/sdf/layerHints.h include/pxr/usd/sdf/layerOffset.h include/pxr/usd/sdf/layerStateDelegate.h include/pxr/usd/sdf/layerTree.h include/pxr/usd/sdf/layerUtils.h include/pxr/usd/sdf/listEditor.h include/pxr/usd/sdf/listEditorProxy.h include/pxr/usd/sdf/listOp.h include/pxr/usd/sdf/listProxy.h include/pxr/usd/sdf/mapEditProxy.h include/pxr/usd/sdf/mapEditor.h include/pxr/usd/sdf/namespaceEdit.h include/pxr/usd/sdf/notice.h +include/pxr/usd/sdf/opaqueValue.h include/pxr/usd/sdf/path.h -include/pxr/usd/sdf/path.tab.h +include/pxr/usd/sdf/pathExpression.h +include/pxr/usd/sdf/pathExpressionEval.h include/pxr/usd/sdf/pathNode.h +include/pxr/usd/sdf/pathPattern.h +include/pxr/usd/sdf/pathPatternParser.h include/pxr/usd/sdf/pathTable.h include/pxr/usd/sdf/payload.h include/pxr/usd/sdf/pool.h +include/pxr/usd/sdf/predicateExpression.h +include/pxr/usd/sdf/predicateExpressionParser.h +include/pxr/usd/sdf/predicateLibrary.h +include/pxr/usd/sdf/predicateProgram.h include/pxr/usd/sdf/primSpec.h include/pxr/usd/sdf/propertySpec.h include/pxr/usd/sdf/proxyPolicies.h include/pxr/usd/sdf/proxyTypes.h include/pxr/usd/sdf/pseudoRootSpec.h include/pxr/usd/sdf/reference.h include/pxr/usd/sdf/relationshipSpec.h include/pxr/usd/sdf/schema.h include/pxr/usd/sdf/schemaTypeRegistration.h include/pxr/usd/sdf/site.h include/pxr/usd/sdf/siteUtils.h include/pxr/usd/sdf/spec.h include/pxr/usd/sdf/specType.h -include/pxr/usd/sdf/textFileFormat.h -include/pxr/usd/sdf/textFileFormat.tab.h +include/pxr/usd/sdf/textParserUtils.h include/pxr/usd/sdf/timeCode.h include/pxr/usd/sdf/tokens.h include/pxr/usd/sdf/types.h +include/pxr/usd/sdf/usdFileFormat.h +include/pxr/usd/sdf/usdaData.h +include/pxr/usd/sdf/usdaFileFormat.h +include/pxr/usd/sdf/usdcFileFormat.h +include/pxr/usd/sdf/usdzFileFormat.h include/pxr/usd/sdf/valueTypeName.h +include/pxr/usd/sdf/variableExpression.h +include/pxr/usd/sdf/variableExpressionAST.h include/pxr/usd/sdf/variantSetSpec.h include/pxr/usd/sdf/variantSpec.h +include/pxr/usd/sdf/zipFile.h include/pxr/usd/sdr/api.h include/pxr/usd/sdr/debugCodes.h include/pxr/usd/sdr/declare.h +include/pxr/usd/sdr/discoveryPlugin.h +include/pxr/usd/sdr/filesystemDiscovery.h +include/pxr/usd/sdr/filesystemDiscoveryHelpers.h +include/pxr/usd/sdr/parserPlugin.h include/pxr/usd/sdr/registry.h +include/pxr/usd/sdr/sdfTypeIndicator.h include/pxr/usd/sdr/shaderMetadataHelpers.h include/pxr/usd/sdr/shaderNode.h +include/pxr/usd/sdr/shaderNodeDiscoveryResult.h include/pxr/usd/sdr/shaderProperty.h include/pxr/usd/usd/api.h include/pxr/usd/usd/apiSchemaBase.h include/pxr/usd/usd/attribute.h +include/pxr/usd/usd/attributeLimits.h include/pxr/usd/usd/attributeQuery.h include/pxr/usd/usd/clipsAPI.h include/pxr/usd/usd/collectionAPI.h include/pxr/usd/usd/collectionMembershipQuery.h +include/pxr/usd/usd/collectionPredicateLibrary.h +include/pxr/usd/usd/colorSpaceAPI.h +include/pxr/usd/usd/colorSpaceDefinitionAPI.h include/pxr/usd/usd/common.h -include/pxr/usd/usd/crateInfo.h include/pxr/usd/usd/debugCodes.h include/pxr/usd/usd/editContext.h include/pxr/usd/usd/editTarget.h include/pxr/usd/usd/errors.h include/pxr/usd/usd/flattenUtils.h include/pxr/usd/usd/inherits.h include/pxr/usd/usd/interpolation.h include/pxr/usd/usd/modelAPI.h +include/pxr/usd/usd/namespaceEditor.h include/pxr/usd/usd/notice.h include/pxr/usd/usd/object.h include/pxr/usd/usd/payloads.h include/pxr/usd/usd/prim.h include/pxr/usd/usd/primCompositionQuery.h include/pxr/usd/usd/primData.h include/pxr/usd/usd/primDataHandle.h include/pxr/usd/usd/primDefinition.h include/pxr/usd/usd/primFlags.h include/pxr/usd/usd/primRange.h include/pxr/usd/usd/primTypeInfo.h include/pxr/usd/usd/property.h include/pxr/usd/usd/references.h include/pxr/usd/usd/relationship.h include/pxr/usd/usd/resolveInfo.h +include/pxr/usd/usd/resolveTarget.h include/pxr/usd/usd/resolver.h include/pxr/usd/usd/schemaBase.h include/pxr/usd/usd/schemaRegistry.h include/pxr/usd/usd/specializes.h include/pxr/usd/usd/stage.h include/pxr/usd/usd/stageCache.h include/pxr/usd/usd/stageCacheContext.h include/pxr/usd/usd/stageLoadRules.h include/pxr/usd/usd/stagePopulationMask.h include/pxr/usd/usd/timeCode.h include/pxr/usd/usd/tokens.h include/pxr/usd/usd/typed.h -include/pxr/usd/usd/usdFileFormat.h -include/pxr/usd/usd/usdaFileFormat.h -include/pxr/usd/usd/usdcFileFormat.h -include/pxr/usd/usd/usdzFileFormat.h include/pxr/usd/usd/variantSets.h -include/pxr/usd/usd/zipFile.h include/pxr/usd/usdGeom/api.h include/pxr/usd/usdGeom/basisCurves.h include/pxr/usd/usdGeom/bboxCache.h include/pxr/usd/usdGeom/boundable.h include/pxr/usd/usdGeom/boundableComputeExtent.h include/pxr/usd/usdGeom/camera.h include/pxr/usd/usdGeom/capsule.h +include/pxr/usd/usdGeom/capsule_1.h include/pxr/usd/usdGeom/cone.h include/pxr/usd/usdGeom/constraintTarget.h include/pxr/usd/usdGeom/cube.h include/pxr/usd/usdGeom/curves.h include/pxr/usd/usdGeom/cylinder.h +include/pxr/usd/usdGeom/cylinder_1.h include/pxr/usd/usdGeom/debugCodes.h include/pxr/usd/usdGeom/gprim.h include/pxr/usd/usdGeom/hermiteCurves.h include/pxr/usd/usdGeom/imageable.h include/pxr/usd/usdGeom/mesh.h include/pxr/usd/usdGeom/metrics.h include/pxr/usd/usdGeom/modelAPI.h include/pxr/usd/usdGeom/motionAPI.h include/pxr/usd/usdGeom/nurbsCurves.h include/pxr/usd/usdGeom/nurbsPatch.h +include/pxr/usd/usdGeom/plane.h include/pxr/usd/usdGeom/pointBased.h include/pxr/usd/usdGeom/pointInstancer.h include/pxr/usd/usdGeom/points.h include/pxr/usd/usdGeom/primvar.h include/pxr/usd/usdGeom/primvarsAPI.h include/pxr/usd/usdGeom/scope.h include/pxr/usd/usdGeom/sphere.h include/pxr/usd/usdGeom/subset.h +include/pxr/usd/usdGeom/tetMesh.h include/pxr/usd/usdGeom/tokens.h include/pxr/usd/usdGeom/visibilityAPI.h include/pxr/usd/usdGeom/xform.h include/pxr/usd/usdGeom/xformCache.h include/pxr/usd/usdGeom/xformCommonAPI.h include/pxr/usd/usdGeom/xformOp.h include/pxr/usd/usdGeom/xformable.h include/pxr/usd/usdHydra/api.h include/pxr/usd/usdHydra/discoveryPlugin.h +include/pxr/usd/usdHydra/generativeProceduralAPI.h include/pxr/usd/usdHydra/tokens.h include/pxr/usd/usdLux/api.h include/pxr/usd/usdLux/blackbody.h include/pxr/usd/usdLux/boundableLightBase.h include/pxr/usd/usdLux/cylinderLight.h include/pxr/usd/usdLux/diskLight.h include/pxr/usd/usdLux/distantLight.h include/pxr/usd/usdLux/domeLight.h +include/pxr/usd/usdLux/domeLight_1.h include/pxr/usd/usdLux/geometryLight.h include/pxr/usd/usdLux/lightAPI.h include/pxr/usd/usdLux/lightFilter.h +include/pxr/usd/usdLux/lightListAPI.h include/pxr/usd/usdLux/listAPI.h include/pxr/usd/usdLux/meshLightAPI.h include/pxr/usd/usdLux/nonboundableLightBase.h include/pxr/usd/usdLux/pluginLight.h include/pxr/usd/usdLux/pluginLightFilter.h include/pxr/usd/usdLux/portalLight.h include/pxr/usd/usdLux/rectLight.h include/pxr/usd/usdLux/shadowAPI.h include/pxr/usd/usdLux/shapingAPI.h include/pxr/usd/usdLux/sphereLight.h include/pxr/usd/usdLux/tokens.h include/pxr/usd/usdLux/volumeLightAPI.h include/pxr/usd/usdMedia/api.h +include/pxr/usd/usdMedia/assetPreviewsAPI.h include/pxr/usd/usdMedia/spatialAudio.h include/pxr/usd/usdMedia/tokens.h include/pxr/usd/usdPhysics/api.h include/pxr/usd/usdPhysics/articulationRootAPI.h include/pxr/usd/usdPhysics/collisionAPI.h include/pxr/usd/usdPhysics/collisionGroup.h include/pxr/usd/usdPhysics/distanceJoint.h include/pxr/usd/usdPhysics/driveAPI.h include/pxr/usd/usdPhysics/filteredPairsAPI.h include/pxr/usd/usdPhysics/fixedJoint.h include/pxr/usd/usdPhysics/joint.h include/pxr/usd/usdPhysics/limitAPI.h include/pxr/usd/usdPhysics/massAPI.h +include/pxr/usd/usdPhysics/massProperties.h include/pxr/usd/usdPhysics/materialAPI.h include/pxr/usd/usdPhysics/meshCollisionAPI.h include/pxr/usd/usdPhysics/metrics.h +include/pxr/usd/usdPhysics/parseDesc.h +include/pxr/usd/usdPhysics/parseUtils.h include/pxr/usd/usdPhysics/prismaticJoint.h include/pxr/usd/usdPhysics/revoluteJoint.h include/pxr/usd/usdPhysics/rigidBodyAPI.h include/pxr/usd/usdPhysics/scene.h include/pxr/usd/usdPhysics/sphericalJoint.h include/pxr/usd/usdPhysics/tokens.h +include/pxr/usd/usdProc/api.h +include/pxr/usd/usdProc/generativeProcedural.h +include/pxr/usd/usdProc/tokens.h include/pxr/usd/usdRender/api.h +include/pxr/usd/usdRender/pass.h include/pxr/usd/usdRender/product.h include/pxr/usd/usdRender/settings.h -include/pxr/usd/usdRender/settingsAPI.h include/pxr/usd/usdRender/settingsBase.h include/pxr/usd/usdRender/spec.h include/pxr/usd/usdRender/tokens.h include/pxr/usd/usdRender/var.h include/pxr/usd/usdRi/api.h include/pxr/usd/usdRi/materialAPI.h include/pxr/usd/usdRi/rmanUtilities.h include/pxr/usd/usdRi/splineAPI.h include/pxr/usd/usdRi/statementsAPI.h -include/pxr/usd/usdRi/textureAPI.h include/pxr/usd/usdRi/tokens.h +include/pxr/usd/usdSemantics/api.h +include/pxr/usd/usdSemantics/labelsAPI.h +include/pxr/usd/usdSemantics/labelsQuery.h +include/pxr/usd/usdSemantics/tokens.h include/pxr/usd/usdShade/api.h include/pxr/usd/usdShade/connectableAPI.h include/pxr/usd/usdShade/connectableAPIBehavior.h include/pxr/usd/usdShade/coordSysAPI.h include/pxr/usd/usdShade/input.h include/pxr/usd/usdShade/material.h include/pxr/usd/usdShade/materialBindingAPI.h include/pxr/usd/usdShade/nodeDefAPI.h include/pxr/usd/usdShade/nodeGraph.h include/pxr/usd/usdShade/output.h include/pxr/usd/usdShade/shader.h include/pxr/usd/usdShade/shaderDefParser.h include/pxr/usd/usdShade/shaderDefUtils.h include/pxr/usd/usdShade/tokens.h include/pxr/usd/usdShade/types.h +include/pxr/usd/usdShade/udimUtils.h include/pxr/usd/usdShade/utils.h include/pxr/usd/usdSkel/animMapper.h include/pxr/usd/usdSkel/animQuery.h include/pxr/usd/usdSkel/animation.h include/pxr/usd/usdSkel/api.h include/pxr/usd/usdSkel/bakeSkinning.h include/pxr/usd/usdSkel/binding.h include/pxr/usd/usdSkel/bindingAPI.h include/pxr/usd/usdSkel/blendShape.h include/pxr/usd/usdSkel/blendShapeQuery.h include/pxr/usd/usdSkel/cache.h include/pxr/usd/usdSkel/debugCodes.h include/pxr/usd/usdSkel/inbetweenShape.h -include/pxr/usd/usdSkel/packedJointAnimation.h include/pxr/usd/usdSkel/root.h include/pxr/usd/usdSkel/skeleton.h include/pxr/usd/usdSkel/skeletonQuery.h include/pxr/usd/usdSkel/skinningQuery.h include/pxr/usd/usdSkel/tokens.h include/pxr/usd/usdSkel/topology.h include/pxr/usd/usdSkel/utils.h +include/pxr/usd/usdUI/accessibilityAPI.h include/pxr/usd/usdUI/api.h +include/pxr/usd/usdUI/attributeHints.h include/pxr/usd/usdUI/backdrop.h include/pxr/usd/usdUI/nodeGraphNodeAPI.h +include/pxr/usd/usdUI/objectHints.h +include/pxr/usd/usdUI/primHints.h +include/pxr/usd/usdUI/propertyHints.h include/pxr/usd/usdUI/sceneGraphPrimAPI.h include/pxr/usd/usdUI/tokens.h include/pxr/usd/usdUtils/api.h include/pxr/usd/usdUtils/authoring.h include/pxr/usd/usdUtils/coalescingDiagnosticDelegate.h include/pxr/usd/usdUtils/conditionalAbortDiagnosticDelegate.h include/pxr/usd/usdUtils/debugCodes.h include/pxr/usd/usdUtils/dependencies.h include/pxr/usd/usdUtils/flattenLayerStack.h include/pxr/usd/usdUtils/introspection.h +include/pxr/usd/usdUtils/localizeAsset.h include/pxr/usd/usdUtils/pipeline.h include/pxr/usd/usdUtils/registeredVariantSet.h include/pxr/usd/usdUtils/sparseValueWriter.h include/pxr/usd/usdUtils/stageCache.h include/pxr/usd/usdUtils/stitch.h include/pxr/usd/usdUtils/stitchClips.h include/pxr/usd/usdUtils/timeCodeRange.h +include/pxr/usd/usdUtils/usdzPackage.h +include/pxr/usd/usdUtils/userProcessingFunc.h include/pxr/usd/usdVol/api.h include/pxr/usd/usdVol/field3DAsset.h include/pxr/usd/usdVol/fieldAsset.h include/pxr/usd/usdVol/fieldBase.h include/pxr/usd/usdVol/openVDBAsset.h include/pxr/usd/usdVol/tokens.h include/pxr/usd/usdVol/volume.h -lib/libusd_ar.so -lib/libusd_arch.so -lib/libusd_gf.so -lib/libusd_js.so -lib/libusd_kind.so -lib/libusd_ndr.so -lib/libusd_pcp.so -lib/libusd_plug.so -lib/libusd_sdf.so -lib/libusd_sdr.so -lib/libusd_tf.so -lib/libusd_trace.so -lib/libusd_usd.so -lib/libusd_usdGeom.so -lib/libusd_usdHydra.so -lib/libusd_usdLux.so -lib/libusd_usdMedia.so -lib/libusd_usdPhysics.so -lib/libusd_usdRender.so -lib/libusd_usdRi.so -lib/libusd_usdShade.so -lib/libusd_usdSkel.so -lib/libusd_usdUI.so -lib/libusd_usdUtils.so -lib/libusd_usdVol.so -lib/libusd_vt.so -lib/libusd_work.so +%%IMAGING%%include/pxr/usdImaging/usdAppUtils/api.h +%%IMAGING%%include/pxr/usdImaging/usdAppUtils/camera.h +%%IMAGING%%include/pxr/usdImaging/usdAppUtils/frameRecorder.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/adapterRegistry.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/api.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/apiSchemaAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/basisCurvesAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/cameraAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/capsuleAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/collectionAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/collectionCache.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/collectionMaterialBindingSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/coneAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/coordSysAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/coordSysAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/cubeAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/cylinderAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/cylinderLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceAttribute.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceAttributeColorSpace.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceAttributeTypeName.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceBasisCurves.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceCamera.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceGprim.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceMapped.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceMaterial.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceMesh.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceNurbsCurves.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceNurbsPatch.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourcePointInstancer.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourcePoints.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourcePrim.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourcePrimvars.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceRelationship.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceRenderPrims.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceStage.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceStageGlobals.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceTetMesh.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceUsdPrimInfo.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/dataSourceVolume.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/debugCodes.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/delegate.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/directMaterialBindingSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/diskLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/distantLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/domeLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/domeLight_1Adapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/drawModeAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/drawModeSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/extentResolvingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/extentsHintSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/fieldAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/flattenedDataSourceProviders.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/flattenedGeomModelDataSourceProvider.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/flattenedMaterialBindingsDataSourceProvider.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/geomModelAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/geomModelSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/geomSubsetAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/geometryLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/gprimAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/hermiteCurvesAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/implicitSurfaceMeshUtils.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/indexProxy.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/instanceAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/instanceablePrimAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/instancerContext.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/lightAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/lightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/lightFilterAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialBindingAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialBindingSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialBindingsResolvingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialBindingsSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/materialParamUtils.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/meshAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/modelSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/niPrototypePropagatingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/nurbsCurvesAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/nurbsPatchAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/piPrototypePropagatingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/planeAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/pluginLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/pluginLightFilterAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/pointInstancerAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/pointsAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/portalLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/primAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/primvarDescCache.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/primvarUtils.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/prototypeSceneIndexUtils.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/rectLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/renderPassAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/renderProductAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/renderSettingsAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/renderSettingsFlatteningSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/renderVarAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/representedByAncestorPrimAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/rerootingContainerDataSource.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/rerootingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/resolvedAttributeCache.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/rootOverridesSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/sceneIndexPlugin.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/sceneIndexPrimAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/sceneIndices.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/selectionSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/sphereAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/sphereLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/stageSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/tetMeshAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/textureUtils.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/tokens.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/types.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/unitTestHelper.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/unloadedDrawModeSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/usdPrimInfoSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/usdRenderProductSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/usdRenderSettingsSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/usdRenderVarSchema.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/version.h +%%IMAGING%%include/pxr/usdImaging/usdImaging/volumeAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdImagingGL/api.h +%%IMAGING%%include/pxr/usdImaging/usdImagingGL/engine.h +%%IMAGING%%include/pxr/usdImaging/usdImagingGL/renderParams.h +%%IMAGING%%include/pxr/usdImaging/usdImagingGL/rendererSettings.h +%%IMAGING%%include/pxr/usdImaging/usdImagingGL/version.h +%%IMAGING%%include/pxr/usdImaging/usdProcImaging/api.h +%%IMAGING%%include/pxr/usdImaging/usdProcImaging/generativeProceduralAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/api.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/projectionSchema.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrAovLightAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrCameraAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrCameraProjectionAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrCameraProjectionAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrDisplayFilterAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrIntegratorAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/pxrSampleFilterAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/tokens.h +%%IMAGING%%include/pxr/usdImaging/usdRiPxrImaging/version.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/animationAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/animationSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/api.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/bindingAPIAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/bindingSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/blendShapeAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/blendShapeData.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/blendShapeSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceAnimationPrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceBindingAPI.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceBlendShapePrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceResolvedExtComputationPrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceResolvedPointsBasedPrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceResolvedSkeletonPrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceSkeletonPrim.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/dataSourceUtils.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/extComputations.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/inbetweenShapeSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/jointInfluencesData.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/package.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/pointsResolvingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/resolvedSkeletonSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/resolvingSceneIndexPlugin.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skelData.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skelGuideData.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skelRootAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skeletonAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skeletonResolvingSceneIndex.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/skeletonSchema.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/tokens.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/utils.h +%%IMAGING%%include/pxr/usdImaging/usdSkelImaging/xformResolver.h +%%IMAGING%%include/pxr/usdImaging/usdVolImaging/api.h +%%IMAGING%%include/pxr/usdImaging/usdVolImaging/dataSourceFieldAsset.h +%%IMAGING%%include/pxr/usdImaging/usdVolImaging/field3dAssetAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdVolImaging/openvdbAssetAdapter.h +%%IMAGING%%include/pxr/usdImaging/usdVolImaging/tokens.h +include/pxr/usdValidation/usdGeomValidators/api.h +include/pxr/usdValidation/usdGeomValidators/validatorTokens.h +include/pxr/usdValidation/usdPhysicsValidators/api.h +include/pxr/usdValidation/usdPhysicsValidators/validatorTokens.h +include/pxr/usdValidation/usdShadeValidators/api.h +include/pxr/usdValidation/usdShadeValidators/validatorTokens.h +include/pxr/usdValidation/usdSkelValidators/api.h +include/pxr/usdValidation/usdSkelValidators/validatorTokens.h +include/pxr/usdValidation/usdUtilsValidators/api.h +include/pxr/usdValidation/usdUtilsValidators/validatorTokens.h +include/pxr/usdValidation/usdValidation/api.h +include/pxr/usdValidation/usdValidation/context.h +include/pxr/usdValidation/usdValidation/error.h +include/pxr/usdValidation/usdValidation/fixer.h +include/pxr/usdValidation/usdValidation/registry.h +include/pxr/usdValidation/usdValidation/timeRange.h +include/pxr/usdValidation/usdValidation/validator.h +include/pxr/usdValidation/usdValidation/validatorTokens.h +%%NO_MONOLITHIC%%lib/libusd_ar.so +%%NO_MONOLITHIC%%lib/libusd_arch.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_cameraUtil.so +%%NO_MONOLITHIC%%lib/libusd_ef.so +%%NO_MONOLITHIC%%lib/libusd_esf.so +%%NO_MONOLITHIC%%lib/libusd_esfUsd.so +%%NO_MONOLITHIC%%lib/libusd_exec.so +%%NO_MONOLITHIC%%lib/libusd_execGeom.so +%%NO_MONOLITHIC%%lib/libusd_execUsd.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_garch.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_geomUtil.so +%%NO_MONOLITHIC%%lib/libusd_gf.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_glf.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hd.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hdGp.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hdSt.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hdar.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hdsi.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hdx.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hf.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hgi.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hgiGL.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hgiInterop.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_hio.so +%%NO_MONOLITHIC%%lib/libusd_js.so +%%NO_MONOLITHIC%%lib/libusd_kind.so +%%MONOLITHIC%%lib/libusd_ms.so +%%NO_MONOLITHIC%%lib/libusd_pcp.so +%%NO_MONOLITHIC%%lib/libusd_pegtl.so +%%NO_MONOLITHIC%%lib/libusd_plug.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_pxOsd.so +%%NO_MONOLITHIC%%lib/libusd_sdf.so +%%NO_MONOLITHIC%%lib/libusd_sdr.so +%%NO_MONOLITHIC%%lib/libusd_tf.so +%%NO_MONOLITHIC%%lib/libusd_trace.so +%%NO_MONOLITHIC%%lib/libusd_ts.so +%%NO_MONOLITHIC%%lib/libusd_usd.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdAppUtils.so +%%NO_MONOLITHIC%%lib/libusd_usdGeom.so +%%NO_MONOLITHIC%%lib/libusd_usdGeomValidators.so +%%NO_MONOLITHIC%%lib/libusd_usdHydra.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdImaging.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdImagingGL.so +%%NO_MONOLITHIC%%lib/libusd_usdLux.so +%%NO_MONOLITHIC%%lib/libusd_usdMedia.so +%%NO_MONOLITHIC%%lib/libusd_usdPhysics.so +%%NO_MONOLITHIC%%lib/libusd_usdPhysicsValidators.so +%%NO_MONOLITHIC%%lib/libusd_usdProc.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdProcImaging.so +%%NO_MONOLITHIC%%lib/libusd_usdRender.so +%%NO_MONOLITHIC%%lib/libusd_usdRi.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdRiPxrImaging.so +%%NO_MONOLITHIC%%lib/libusd_usdSemantics.so +%%NO_MONOLITHIC%%lib/libusd_usdShade.so +%%NO_MONOLITHIC%%lib/libusd_usdShadeValidators.so +%%NO_MONOLITHIC%%lib/libusd_usdSkel.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdSkelImaging.so +%%NO_MONOLITHIC%%lib/libusd_usdSkelValidators.so +%%NO_MONOLITHIC%%lib/libusd_usdUI.so +%%NO_MONOLITHIC%%lib/libusd_usdUtils.so +%%NO_MONOLITHIC%%lib/libusd_usdUtilsValidators.so +%%NO_MONOLITHIC%%lib/libusd_usdValidation.so +%%NO_MONOLITHIC%%lib/libusd_usdVol.so +%%IMAGING%%%%NO_MONOLITHIC%%lib/libusd_usdVolImaging.so +%%NO_MONOLITHIC%%lib/libusd_vdf.so +%%NO_MONOLITHIC%%lib/libusd_vt.so +%%NO_MONOLITHIC%%lib/libusd_work.so lib/usd/ar/resources/plugInfo.json -lib/usd/ndr/resources/plugInfo.json +lib/usd/esf/resources/plugInfo.json +lib/usd/esfUsd/resources/plugInfo.json +lib/usd/exec/resources/plugInfo.json +lib/usd/execGeom/resources/plugInfo.json +lib/usd/execUsd/resources/plugInfo.json +%%IMAGING%%lib/usd/glf/resources/plugInfo.json +%%IMAGING%%lib/usd/glf/resources/shaders/pcfShader.glslfx +%%IMAGING%%lib/usd/glf/resources/shaders/simpleLighting.glslfx +%%IMAGING%%lib/usd/hd/resources/codegenTemplates/schemaClass.cpp +%%IMAGING%%lib/usd/hd/resources/codegenTemplates/schemaClass.h +%%IMAGING%%lib/usd/hd/resources/plugInfo.json +%%IMAGING%%lib/usd/hdGp/resources/plugInfo.json +%%IMAGING%%lib/usd/hdSt/resources/plugInfo.json +%%IMAGING%%lib/usd/hdSt/resources/shaders/basisCurves.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/compute.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/domeLight.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/edgeId.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/fallbackLighting.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/fallbackLightingShader.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/fallbackMaterialNetwork.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/fallbackVolume.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/frustumCull.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/imageShader.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/instancing.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/invalidMaterialNetwork.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/mesh.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/meshFaceCull.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/meshNormal.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/meshWire.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/overlayShader.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/pointDisk.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/pointId.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/points.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/ptexTexture.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/renderPass.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/renderPassShader.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/simpleLightingShader.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/surfaceHelpers.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/terminals.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/visibility.glslfx +%%IMAGING%%lib/usd/hdSt/resources/shaders/volume.glslfx +%%IMAGING%%lib/usd/hdSt/resources/textures/fallbackBlackDomeLight.png +%%IMAGING%%lib/usd/hdsi/resources/plugInfo.json +%%IMAGING%%lib/usd/hdx/resources/plugInfo.json +%%IMAGING%%lib/usd/hdx/resources/shaders/boundingBox.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/colorChannel.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/colorCorrection.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/fullscreen.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/oitResolveImageShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/outline.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPass.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassColorAndSelectionShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassColorShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassColorWithOccludedSelectionShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassOitOpaqueShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassOitShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassOitVolumeShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassPickingShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/renderPassShadowShader.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/selection.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/skydome.glslfx +%%IMAGING%%lib/usd/hdx/resources/shaders/visualize.glslfx +%%IMAGING%%lib/usd/hdx/resources/textures/StinsonBeach.hdr +%%IMAGING%%lib/usd/hdx/resources/textures/StinsonBeach.tex +%%IMAGING%%lib/usd/hgiGL/resources/plugInfo.json +%%IMAGING%%lib/usd/hio/resources/plugInfo.json lib/usd/plugInfo.json lib/usd/sdf/resources/plugInfo.json +lib/usd/sdr/resources/plugInfo.json +lib/usd/usd/resources/codegenTemplates/CMakeLists.txt +lib/usd/usd/resources/codegenTemplates/__init__.py lib/usd/usd/resources/codegenTemplates/api.h +lib/usd/usd/resources/codegenTemplates/generatedSchema.classes.txt +lib/usd/usd/resources/codegenTemplates/generatedSchema.module.h +lib/usd/usd/resources/codegenTemplates/module.cpp +lib/usd/usd/resources/codegenTemplates/moduleDeps.cpp lib/usd/usd/resources/codegenTemplates/plugInfo.json +lib/usd/usd/resources/codegenTemplates/schema.usda lib/usd/usd/resources/codegenTemplates/schemaClass.cpp lib/usd/usd/resources/codegenTemplates/schemaClass.h +lib/usd/usd/resources/codegenTemplates/schemaUserDoc.usda lib/usd/usd/resources/codegenTemplates/tokens.cpp lib/usd/usd/resources/codegenTemplates/tokens.h lib/usd/usd/resources/codegenTemplates/wrapSchemaClass.cpp lib/usd/usd/resources/codegenTemplates/wrapTokens.cpp lib/usd/usd/resources/generatedSchema.usda lib/usd/usd/resources/plugInfo.json lib/usd/usd/resources/usd/schema.usda lib/usd/usdGeom/resources/generatedSchema.usda lib/usd/usdGeom/resources/plugInfo.json lib/usd/usdGeom/resources/usdGeom/schema.usda +lib/usd/usdGeomValidators/resources/plugInfo.json +lib/usd/usdHydra/resources/generatedSchema.usda lib/usd/usdHydra/resources/plugInfo.json lib/usd/usdHydra/resources/shaders/empty.glslfx lib/usd/usdHydra/resources/shaders/shaderDefs.usda +lib/usd/usdHydra/resources/usdHydra/schema.usda +%%IMAGING%%lib/usd/usdImaging/resources/plugInfo.json +%%IMAGING%%lib/usd/usdImagingGL/resources/plugInfo.json lib/usd/usdLux/resources/generatedSchema.usda lib/usd/usdLux/resources/plugInfo.json lib/usd/usdLux/resources/usdLux/schema.usda lib/usd/usdMedia/resources/generatedSchema.usda lib/usd/usdMedia/resources/plugInfo.json lib/usd/usdMedia/resources/usdMedia/schema.usda lib/usd/usdPhysics/resources/generatedSchema.usda lib/usd/usdPhysics/resources/plugInfo.json lib/usd/usdPhysics/resources/usdPhysics/schema.usda +lib/usd/usdPhysicsValidators/resources/plugInfo.json +lib/usd/usdProc/resources/generatedSchema.usda +lib/usd/usdProc/resources/plugInfo.json +lib/usd/usdProc/resources/usdProc/schema.usda +%%IMAGING%%lib/usd/usdProcImaging/resources/plugInfo.json lib/usd/usdRender/resources/generatedSchema.usda lib/usd/usdRender/resources/plugInfo.json lib/usd/usdRender/resources/usdRender/schema.usda lib/usd/usdRi/resources/generatedSchema.usda lib/usd/usdRi/resources/plugInfo.json lib/usd/usdRi/resources/usdRi/schema.usda +%%IMAGING%%lib/usd/usdRiPxrImaging/resources/plugInfo.json +lib/usd/usdSemantics/resources/generatedSchema.usda +lib/usd/usdSemantics/resources/plugInfo.json +lib/usd/usdSemantics/resources/usdSemantics/schema.usda lib/usd/usdShade/resources/generatedSchema.usda lib/usd/usdShade/resources/plugInfo.json lib/usd/usdShade/resources/usdShade/schema.usda +lib/usd/usdShadeValidators/resources/plugInfo.json lib/usd/usdSkel/resources/generatedSchema.usda lib/usd/usdSkel/resources/plugInfo.json lib/usd/usdSkel/resources/usdSkel/schema.usda +%%IMAGING%%lib/usd/usdSkelImaging/resources/plugInfo.json +%%IMAGING%%lib/usd/usdSkelImaging/resources/shaders/skinning.glslfx +lib/usd/usdSkelValidators/resources/plugInfo.json lib/usd/usdUI/resources/generatedSchema.usda lib/usd/usdUI/resources/plugInfo.json lib/usd/usdUI/resources/usdUI/schema.usda +lib/usd/usdUtilsValidators/resources/plugInfo.json +lib/usd/usdValidation/resources/plugInfo.json lib/usd/usdVol/resources/generatedSchema.usda lib/usd/usdVol/resources/plugInfo.json lib/usd/usdVol/resources/usdVol/schema.usda +%%IMAGING%%lib/usd/usdVolImaging/resources/plugInfo.json +%%IMAGING%%%%NO_MONOLITHIC%%plugin/usd/hdStorm.so +%%IMAGING%%plugin/usd/hdStorm/resources/plugInfo.json +%%IMAGING%%%%NO_MONOLITHIC%%plugin/usd/hioAvif.so +%%IMAGING%%plugin/usd/hioAvif/resources/plugInfo.json +%%IMAGING%%%%NO_MONOLITHIC%%plugin/usd/hioOpenEXR.so +%%IMAGING%%plugin/usd/hioOpenEXR/resources/plugInfo.json plugin/usd/plugInfo.json +%%IMAGING%%%%NO_MONOLITHIC%%plugin/usd/sdrGlslfx.so +%%IMAGING%%plugin/usd/sdrGlslfx/resources/plugInfo.json +%%NO_MONOLITHIC%%plugin/usd/usdShaders.so +plugin/usd/usdShaders/resources/plugInfo.json +plugin/usd/usdShaders/resources/shaders/previewSurface.glslfx +plugin/usd/usdShaders/resources/shaders/primvarReader.glslfx +plugin/usd/usdShaders/resources/shaders/shaderDefs.usda +plugin/usd/usdShaders/resources/shaders/transform2d.glslfx +plugin/usd/usdShaders/resources/shaders/uvTexture.glslfx pxrConfig.cmake