-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alembic support #56
Merged
pixar-oss
merged 21 commits into
PixarAnimationStudios:dev_win_ip
from
unknown repository
Sep 21, 2016
Merged
Alembic support #56
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
cc8b06e
The PxrUsdIn node type in KATANA didn't have the fileInput hint set, …
7b7cd41
Merge branch 'dev_win_ip' of https://github.com/PixarAnimationStudios…
a7dd231
Initial implementation of symbolic link resolution.
921e4ae
Compile usdAbc plugin.
f4944bb
Cleanup unncessary files.
15b76bc
Fix crash in incorrect use of boost::regex.
3a800b9
usdAbc now runs on Windows.
bf98489
Allow build system to find OPENEXR's IexMath library.
d45c9da
Fix typo in BUILDING instructions.
c6ecf0b
Allow Double Conversion location to be specified to CMake.
6b4bf84
Explicitly add the OpenGL headers to Glf.
dfa906c
Allow Maya to be compiled without having Maya installed. Still need t…
7c587b5
Scope the flipping of backward to forward slash in to Ar_DefaultResol…
819b6cb
Fixed recursive issue with Tf_MakeDirsRec() on Windows.
02d68c8
Implemented TfReadLink on Windows.
688f671
Added ArchExpandEnvironmentVariables() so we can expand environment v…
81b89e9
Re-enable and fix-up a whole bunch of tests.
0392753
Disable a few more tests for the time being.
95c7e43
Adding dllexport to some functions missed by the tests.
875835e
Allow source files in plugins to have a __FILENAME__ property for the…
e39a3cf
usdObj and usdSchemaExamples now compile on Windows.
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,7 @@ endif() | |
foreach(OPENEXR_LIB | ||
Half | ||
Iex | ||
IexMath | ||
Imath | ||
IlmImf | ||
IlmThread | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
set(PXR_PREFIX examples) | ||
set(PXR_INSTALL_SUBDIR share/usd/examples) | ||
|
||
if(UNIX) | ||
add_subdirectory(usdObj) | ||
add_subdirectory(usdSchemaExamples) | ||
add_subdirectory(usdMakeFileVariantModelAsset) | ||
endif() | ||
add_subdirectory(usdObj) | ||
add_subdirectory(usdSchemaExamples) | ||
add_subdirectory(usdMakeFileVariantModelAsset) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this test for ${A} AND NOT ${A} a cmake-ism or a typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I understand its the difference between
#define A
and
#define A 1
So it tests the variable exists and its not been set to true.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, gotcha :) So much cmake to learn.