This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support vrb ProgramFactory * Update vrb Co-authored-by: Imanol Fernandez <mortimergoro@gmail.com>
- Loading branch information
1 parent
97bb737
commit 37ab021
Showing
14 changed files
with
97 additions
and
11 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
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
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
Submodule vrb
updated
23 files
+21 −0 | include/vrb/BasicShaders.h | |
+38 −0 | include/vrb/BlockTimer.h | |
+1 −0 | include/vrb/CreationContext.h | |
+1 −1 | include/vrb/FBO.h | |
+7 −0 | include/vrb/Forward.h | |
+34 −0 | include/vrb/LoaderThread.h | |
+2 −0 | include/vrb/MacroUtils.h | |
+7 −6 | include/vrb/ModelLoaderAndroid.h | |
+41 −0 | include/vrb/Program.h | |
+15 −4 | include/vrb/ProgramFactory.h | |
+1 −0 | include/vrb/RenderContext.h | |
+2 −6 | include/vrb/RenderState.h | |
+166 −0 | src/BasicShaders.cpp | |
+38 −0 | src/BlockTimer.cpp | |
+4 −0 | src/CMakeLists.txt | |
+7 −0 | src/CreationContext.cpp | |
+34 −0 | src/ModelLoaderAndroid.cpp | |
+10 −2 | src/NodeFactoryObj.cpp | |
+77 −0 | src/Program.cpp | |
+270 −0 | src/ProgramFactory.cpp | |
+9 −0 | src/RenderContext.cpp | |
+93 −359 | src/RenderState.cpp | |
+1 −0 | src/ResourceGL.cpp |