-
-
Notifications
You must be signed in to change notification settings - Fork 17
Add support for ASTC compressed KTX textures #35
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
Open
Erik-White
wants to merge
29
commits into
SixLabors:main
Choose a base branch
from
Erik-White:add-astc-decoding
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,857
−18
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
7b41d97
Add basis for ASTC decoding
Erik-White ae2c4c4
Update to use AstcSharp
Erik-White 52ff132
Fix comment tags
Erik-White 48c9802
Merge branch 'main' into add-astc-decoding
Erik-White 2563be5
Use strongly named AstcSharp
Erik-White 5df747f
Remove temporary tests
Erik-White 6db3033
Reduce code duplication for ASTC block sizes
Erik-White d8d9d44
Remove debug code
Erik-White 8e86c7c
Add ASTC block size reference tests
Erik-White 710f018
Update naming of ktx2 test files
Erik-White 3d9fd53
Add ASTC 8x8 test for KTX1
Erik-White 37e067f
Add unorm and srgb test cases
Erik-White 0b1639a
UNORM -> Unorm
Erik-White f9c119c
Update block size test data
Erik-White a149d52
Use tighter comparison for KTX1 tests
Erik-White 310f012
Add placeholder tests for supercompressed ASTC
Erik-White aceb57a
Add cubemap decoding test
Erik-White 5e8a097
Add test for mipmap levels
Erik-White 52058fc
Improve and reorganize flat tests
Erik-White e5c2e5e
Clean up test images list
Erik-White f26130b
Add large image test
Erik-White 297f802
Tidy up test image naming
Erik-White 1946b6c
Tidy up unused test files
Erik-White fc7387b
Restore existing test images
Erik-White 1c6be57
Update ASTC types to follow style recommendations
Erik-White d8535e5
Remove unsupported test images
Erik-White bba744e
Tidy up AstcDecoder and add more guards
Erik-White 7bc09d0
Correctly guard image dimensions
Erik-White 4ca0d00
Update readme
Erik-White 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 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
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
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
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
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
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
Oops, something went wrong.
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.
This is just to satisfy the tests that check the stream has been read to the end. The reader can jump around a bit in the file so it may not always end up positioned at the end otherwise.