-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb6d274
commit a605199
Showing
83 changed files
with
5,555 additions
and
428 deletions.
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
15 changes: 15 additions & 0 deletions
15
thirdparty/oculus_mobile_sdk/1stParty/OVR/tests/OVR_LogUtilsTest.cpp
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Facebook Technologies, LLC Proprietary and Confidential. | ||
|
||
#include <OVR_LogUtils.h> | ||
|
||
#include <gtest/gtest.h> | ||
|
||
namespace OVR { | ||
namespace { | ||
|
||
TEST(LogUtilsTest, FatalTest) { | ||
EXPECT_DEATH(OVR_FAIL("death message"), "death message"); | ||
} | ||
|
||
} // namespace | ||
} // namespace OVR |
20 changes: 20 additions & 0 deletions
20
thirdparty/oculus_mobile_sdk/3rdParty/khronos/ktx/README.meta
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Summary | ||
|
||
This is a pre-built KTX library built from a version (refer: ktx.gitversion) of the Khronos KTX Repo | ||
|
||
- The original is hosted at https://github.com/KhronosGroup/KTX-Software | ||
|
||
# Updating | ||
|
||
### How to update | ||
|
||
1. Check out the source repo from the URL above | ||
2. Make sure you have your local ANDROID_NDK path setup. | ||
3. Your local machine needs to have Cmake, Ninja, and clang. (If you do not have Ninja or it does not work, you can remove this from the following build script) | ||
4. Run ci_tools/build_android.sh - You may need to modify this script to manually input your ANDROID_NDK path | ||
5. Move the newly built libktx.so, libktx_read.so, and libobjUtil.a files into lib/android/arm64-v8a | ||
6. Replace include/ktx.h with the latest from github (if necessary) | ||
|
||
### When to update | ||
|
||
- Ideally we do not need to update this library, but if there are some crucial fixes or changes that are necessary, we can run these steps to update. |
Oops, something went wrong.