Implement ETC2 Transcoding support#417
Open
Shivansps wants to merge 10 commits into
Open
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Initially will be only for android were you can enable ETC2 transcoding during mod installs if the gpu lacks S3TC or BC7 support.
Latter this will be used to be able to transcode in your PC and transfer mods already transcoded to an android version of knossos.
Thats why the library needs to be present in desktop OS as well.
On Android Knossos will detect GPU capabilities and enable transcoding by default. It is also smart enoght to know to only transcode S3TC and/or BC7 depending on hardware support. Configuration can be done on the globalsettings page.
The transcoding process algo patches .eff files to change the $type to ktx if its frames has been transcoded.
Uncompressed DDS files are completely ignored in the process because there is a chance they could be used for the 2D UI system were compressed image assets arent supported.
Im still missing the MacOS versions of "etc2native", but those can be added later at any point.