| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
Add clang-format support (#913) Adds the mechanics for using clang-format but does not reformat the sources or enable checking in CI. - A git-blame ignore file has been committed to the repo which instructs GitHub's blame functionality on the web interface to keep attribution of lines affected by formatting. Local clones may be [configured told similarly](https://www.stefanjudis.com/today-i-learned/how-to-exclude-commits-from-git-blame/). | 2 年前 | |
| 1 年前 | ||
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Merge ktxtools into main (#714) PR to merge the contents of the ktxtools branch into main. This PR should be functionally identical to the ktxtools branch. Briefs: Rebase ktxtools onto main Update the CTS golden files to pickup the changes in ASTC and ZSTD versions Add CTS testing to MinGW and Windows CI builds Pickup changes in image.hpp from main to ktxtools's image.hpp Fix any remaining warnings | 3 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Bring repository into REUSE compliance (#291) * Make repository compliant with REUSE license checker This is complex due to the many imported files and projects. Information about those licenses is being captured in .reuse/dep5 to keep the contents of imported files unchanged. In some cases educated guesswork has been required. * Work around reuse RTF parsing problem by adding a parallel License.rtf.license file. Co-authored-by: Mark Callow <github@callow.im> | 5 年前 | |
Merge ktxtools into main (#714) PR to merge the contents of the ktxtools branch into main. This PR should be functionally identical to the ktxtools branch. Briefs: Rebase ktxtools onto main Update the CTS golden files to pickup the changes in ASTC and ZSTD versions Add CTS testing to MinGW and Windows CI builds Pickup changes in image.hpp from main to ktxtools's image.hpp Fix any remaining warnings | 3 年前 | |
Make ktxStream public (#438) ... to enable wrappers for languages with their own i/o models. * Move ktxStream definitions to ktx.h * Expose or implement ktxStream functions * Add eStreamTypeCustom * Add basic ktxStream <-> C++ integration tests * Add a test for ktxTexture1_WriteKTX2ToStream * Add a KTX2->KTX2 writing test | 5 年前 | |
Implement the extended scope and further improvements for ktxtools (#722) - tools: Implement stdout support - tools: Implement stdin support - tools: Implement 4:2:2 support - tools: Implement support for 10X6 and 10X4 formats - tools: Implement support for B10G11R11_UFLOAT and E5B9G9R9_UFLOAT formats - tools: Complete support for Depth-Stencil formats - tools: Improvements, cleanup and bug fixes - extract: Implement fragment URI support - extract: Implement 4:2:2 sub-sampling - validate: Fix and extend padding byte validation checks - cts: Add support for stdin/stdout test cases (including binary IO) - cts: Add tests to cover new features and capabilities - cts: Extend existing tests to improve coverage - cts: Test runner now deletes matching output files (this enables easy packaging of mismatching files) - cts: Added a new cli arg to the runner script: --keep-matching-outputs to prevent the deletion of matching output files - dfdUtils: Implement 4:2:2 support - dfdUtils: Implement support for 10X6 and 10X4 formats - imageio: Fix stdin support - ktx: Add stringToVkFormat to mkvkformatfiles - ktx: Implement 3D BC support (ASTC 3D Blocks) - ktx: Implement 4:2:2 support - ktx: Complete support for Depth-Stencil formats - ktx: Improve interpretDFD - ktx: Improvements, cleanup and bug fixes - cmake: Add CMake generator expression for output directory on Mac | 3 年前 | |
Allow A8B8G8R8 formats. (#861) Fixes issue #860. Updates the switches used by the the GL loader to those generated by generate_format_switches.rb in the KTX-Specification repo as a way to get them updated for these and some other recently added Vulkan formats. The glloader now loads the newly allowed formats. VkFormat declarations for Java and Python are now generated by mkvkformatfiles which has been moved to ci_scripts since it now generates files outside the lib directory. The unattractive alternative was to hand edit these files to add the newly allowed formats. CI testing of vkformat-related file generation (mkvk) has been moved to a dedicated GitHub workflow and removed from the main CI builds. This is because testing now requires a clone of the KTX-Specification repo due to the use of generate_format_switches.rb. The change to createdfd.c is to remove a duplicated line of code and is unrelated to the purpose of this PR. https://github.com/KhronosGroup/KTX-Software-CTS/pull/19 removes the tests for these as prohibited and adds new tests for the formats. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
| 2 年前 | ||
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Flesh out support for VK_FORMAT_R16G16_S10_5_NV. (#864) This includes a new round-trip test of vk2dfd and dfd2vk for all Vulkan formats except multi-plane and modifications to both functions, or rather their generators, to fix support for some formats, including VK_FORMAT_R16G16_S10_5_NV and the YUV 4:2:2 single plane formats. Those listed required changes to interpretDFD. Fixes #859. Co-authored-by: Andrew Garrard <fluppeteer@users.noreply.github.com> | 2 年前 | |
Flesh out support for VK_FORMAT_R16G16_S10_5_NV. (#864) This includes a new round-trip test of vk2dfd and dfd2vk for all Vulkan formats except multi-plane and modifications to both functions, or rather their generators, to fix support for some formats, including VK_FORMAT_R16G16_S10_5_NV and the YUV 4:2:2 single plane formats. Those listed required changes to interpretDFD. Fixes #859. Co-authored-by: Andrew Garrard <fluppeteer@users.noreply.github.com> | 2 年前 | |
Merge ktx compare to main (#868) This PR contains all the code changes for the ktx compare tool, alongside other changes related to fixes needed to be done in order for ktx compare to work as expected (including the fixes related to the handling of the D24S8 format). | 2 年前 | |
Merge ktx compare to main (#868) This PR contains all the code changes for the ktx compare tool, alongside other changes related to fixes needed to be done in order for ktx compare to work as expected (including the fixes related to the handling of the D24S8 format). | 2 年前 | |
Reenable build of loadtest apps on Windows arm64 CI (#802) Set CMP-0149 before product() command so it works and the desired Windows SDK is chosen. Fixes Windows arm64 build. Set threads limit for vcpkg builds to avoid memory exhaustion. Add CMake configuration option for Windows and macOS to search for dependencies (assimp, glew, SDL2) locally instead of using the binaries in the repo. Defaults to OFF. | 2 年前 | |
| 2 年前 | ||
Fix various issues surfaced by fuzzer (#900) This collects some fixes for issues found while fuzzing KTX parsing code through ktxTexture_CreateFromStream * Integer truncation in memstream.c that could lead to out-of-bounds access * Memory leaks in texture2.c caused by early function exits without freeing memory * Out-of-bound read/write caused by using data read from the file without checking if the buffer has enough data. Fixing this gives stricter validation of the embedded DFD so some invalid files, which were previously, are no longer loaded. * valueLen becoming negative in hashlist.c if keyLen==keyAndValueByteSize | 2 年前 | |
Make ktxStream public (#438) ... to enable wrappers for languages with their own i/o models. * Move ktxStream definitions to ktx.h * Expose or implement ktxStream functions * Add eStreamTypeCustom * Add basic ktxStream <-> C++ integration tests * Add a test for ktxTexture1_WriteKTX2ToStream * Add a KTX2->KTX2 writing test | 5 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix recreateBytesPlane0 and add test (#856) of correct result for all valid VkFormats. Modify mkvkformatfiles to generate the list of valid format names to populate the table that drives the new test. Fix dfdutils Doxygen config file to include queries.c in the input. | 2 年前 | |
JNI improvements (#886) Large refactoring of the Java Wrapper, focussing on error handling, documentation, completeness, and usability improvements. Fixes #880. This includes several breaking changes. Not all breaking changes are listed here explicitly. But in all cases, it should be easy for clients to update their code to the new state. The most important changes for the Java Wrapper are: - Made deflateZstd, deflateZLIB, and createFromMemory available in the KtxTexture2 class - Fixed a bug where the KtxBasisParams#setInputSwizzle function caused data corruption - Increased the consistency of the naming and handling of constants: - All constant names are UPPER_SNAKE_CASE, omitting common prefixes - Classes that define constants offer a stringFor function that returns the string representation of a constant - The KtxCreateStorage class was renamed to KtxTextureCreateStorage - The KtxPackUASTCFlagBits class was renamed to KtxPackUastcFlagBits - Improved error handling: - When functions receive a parameter that is null, then this will no longer crash the JVM, but throw a NullPointerException instead - When setInputSwizzle receives invalid arguments, then an IllegalArgumentException will be thrown - When one of the create... family of functions causes an error, meaning that the respective KtxTexture2 object cannot be created, then a KtxException will be thrown - Added JavaDocs, and enabled the generation of JavaDocs as part of the Maven build process - Internal improvements (like JNI field caching, and avoiding to call JNI functions with pending exceptions) | 1 年前 | |
Bring repository into REUSE compliance (#291) * Make repository compliant with REUSE license checker This is complex due to the many imported files and projects. Information about those licenses is being captured in .reuse/dep5 to keep the contents of imported files unchanged. In some cases educated guesswork has been required. * Work around reuse RTF parsing problem by adding a parallel License.rtf.license file. Co-authored-by: Mark Callow <github@callow.im> | 5 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
ktx create: Update transfer function handling (#982) * Support in ktx create the transfer function flexibility opened up by spec. revision 2. * Improve libktx checks for valid transfer functions. There are some unrelated changes: - mistakes I noticed in messages for other options - an error in the range of values usable for the --clevel parameter to encode for BasisU. I took the opportunity to fix these here rather than making another PR. | 1 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Make ktxTexture2_Write functions public. (#985) | 1 年前 | |
Bring repository into REUSE compliance (#291) * Make repository compliant with REUSE license checker This is complex due to the many imported files and projects. Information about those licenses is being captured in .reuse/dep5 to keep the contents of imported files unchanged. In some cases educated guesswork has been required. * Work around reuse RTF parsing problem by adding a parallel License.rtf.license file. Co-authored-by: Mark Callow <github@callow.im> | 5 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Allow A8B8G8R8 formats. (#861) Fixes issue #860. Updates the switches used by the the GL loader to those generated by generate_format_switches.rb in the KTX-Specification repo as a way to get them updated for these and some other recently added Vulkan formats. The glloader now loads the newly allowed formats. VkFormat declarations for Java and Python are now generated by mkvkformatfiles which has been moved to ci_scripts since it now generates files outside the lib directory. The unattractive alternative was to hand edit these files to add the newly allowed formats. CI testing of vkformat-related file generation (mkvk) has been moved to a dedicated GitHub workflow and removed from the main CI builds. This is because testing now requires a clone of the KTX-Specification repo due to the use of generate_format_switches.rb. The change to createdfd.c is to remove a duplicated line of code and is unrelated to the purpose of this PR. https://github.com/KhronosGroup/KTX-Software-CTS/pull/19 removes the tests for these as prohibited and adds new tests for the formats. | 2 年前 | |
Allow A8B8G8R8 formats. (#861) Fixes issue #860. Updates the switches used by the the GL loader to those generated by generate_format_switches.rb in the KTX-Specification repo as a way to get them updated for these and some other recently added Vulkan formats. The glloader now loads the newly allowed formats. VkFormat declarations for Java and Python are now generated by mkvkformatfiles which has been moved to ci_scripts since it now generates files outside the lib directory. The unattractive alternative was to hand edit these files to add the newly allowed formats. CI testing of vkformat-related file generation (mkvk) has been moved to a dedicated GitHub workflow and removed from the main CI builds. This is because testing now requires a clone of the KTX-Specification repo due to the use of generate_format_switches.rb. The change to createdfd.c is to remove a duplicated line of code and is unrelated to the purpose of this PR. https://github.com/KhronosGroup/KTX-Software-CTS/pull/19 removes the tests for these as prohibited and adds new tests for the formats. | 2 年前 | |
Allow A8B8G8R8 formats. (#861) Fixes issue #860. Updates the switches used by the the GL loader to those generated by generate_format_switches.rb in the KTX-Specification repo as a way to get them updated for these and some other recently added Vulkan formats. The glloader now loads the newly allowed formats. VkFormat declarations for Java and Python are now generated by mkvkformatfiles which has been moved to ci_scripts since it now generates files outside the lib directory. The unattractive alternative was to hand edit these files to add the newly allowed formats. CI testing of vkformat-related file generation (mkvk) has been moved to a dedicated GitHub workflow and removed from the main CI builds. This is because testing now requires a clone of the KTX-Specification repo due to the use of generate_format_switches.rb. The change to createdfd.c is to remove a duplicated line of code and is unrelated to the purpose of this PR. https://github.com/KhronosGroup/KTX-Software-CTS/pull/19 removes the tests for these as prohibited and adds new tests for the formats. | 2 年前 | |
Allow A8B8G8R8 formats. (#861) Fixes issue #860. Updates the switches used by the the GL loader to those generated by generate_format_switches.rb in the KTX-Specification repo as a way to get them updated for these and some other recently added Vulkan formats. The glloader now loads the newly allowed formats. VkFormat declarations for Java and Python are now generated by mkvkformatfiles which has been moved to ci_scripts since it now generates files outside the lib directory. The unattractive alternative was to hand edit these files to add the newly allowed formats. CI testing of vkformat-related file generation (mkvk) has been moved to a dedicated GitHub workflow and removed from the main CI builds. This is because testing now requires a clone of the KTX-Specification repo due to the use of generate_format_switches.rb. The change to createdfd.c is to remove a duplicated line of code and is unrelated to the purpose of this PR. https://github.com/KhronosGroup/KTX-Software-CTS/pull/19 removes the tests for these as prohibited and adds new tests for the formats. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Add clang-format support (#913) Adds the mechanics for using clang-format but does not reformat the sources or enable checking in CI. - A git-blame ignore file has been committed to the repo which instructs GitHub's blame functionality on the web interface to keep attribution of lines affected by formatting. Local clones may be [configured told similarly](https://www.stefanjudis.com/today-i-learned/how-to-exclude-commits-from-git-blame/). | 2 年前 | |
ktx create: Update transfer function handling (#982) * Support in ktx create the transfer function flexibility opened up by spec. revision 2. * Improve libktx checks for valid transfer functions. There are some unrelated changes: - mistakes I noticed in messages for other options - an error in the range of values usable for the --clevel parameter to encode for BasisU. I took the opportunity to fix these here rather than making another PR. | 1 年前 | |
Add clang-format support (#913) Adds the mechanics for using clang-format but does not reformat the sources or enable checking in CI. - A git-blame ignore file has been committed to the repo which instructs GitHub's blame functionality on the web interface to keep attribution of lines affected by formatting. Local clones may be [configured told similarly](https://www.stefanjudis.com/today-i-learned/how-to-exclude-commits-from-git-blame/). | 2 年前 | |
Add clang-format support (#913) Adds the mechanics for using clang-format but does not reformat the sources or enable checking in CI. - A git-blame ignore file has been committed to the repo which instructs GitHub's blame functionality on the web interface to keep attribution of lines affected by formatting. Local clones may be [configured told similarly](https://www.stefanjudis.com/today-i-learned/how-to-exclude-commits-from-git-blame/). | 2 年前 | |
Add clang-format support (#913) Adds the mechanics for using clang-format but does not reformat the sources or enable checking in CI. - A git-blame ignore file has been committed to the repo which instructs GitHub's blame functionality on the web interface to keep attribution of lines affected by formatting. Local clones may be [configured told similarly](https://www.stefanjudis.com/today-i-learned/how-to-exclude-commits-from-git-blame/). | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 | |
Fix issues newly flagged by Doxygen 1.11.0 (#925) Some were genuine issues that surprisingly weren't flagged before: astc_encode.cpp, ktx2check.c. One is a change to an existing Doxygen issue that caused a previously working reference to not be found: vkloader.c. Includes these other documentation related changes: 1. Change several ktxTexture references in ktxTexture2 to ktxTexture2 references. 2. Update CI to install graphviz of which dot is part. With dot Doxygen provides nice include dependency, inverse include dependency, inheritance and other graphs. 3. Make Doxygen skip the documentation for the ktxTexture macro as the existence of a same-named macro causes Doxygen to fail to make intra-class cross-references in the ktxTexture class. 4. Fine tune the deprecation statements. 5. Remove names from @file commands. These are unnecessary and error-prone. Three mismatches were spotted during this work. **IMPORTANT** Documentation for releases must not be generated with Doxygen 1.11.0 as it has a bug that causes it to not add snippets to generated pages. See https://github.com/doxygen/doxygen/issues/10957. | 2 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 2 年前 | ||
| 1 年前 | ||
| 2 年前 | ||
| 3 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 5 年前 | ||
| 3 年前 | ||
| 5 年前 | ||
| 3 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 5 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 5 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 5 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 | ||
| 2 年前 |