v4.3.0-beta1 #824
MarkCallow
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
New Features in Version 4.3.0
Command Line Tools Suite
v4.3.0 contains a new suite of command line tools accessed via an umbrella
ktx
command.ktx create
toktx
ktx extract
ktx encode
ktxsc
ktx transcode
ktx info
ktxinfo
ktx validate
ktx2check
ktx help
Equivalent old tools will be removed in a subsequent release soon.
Some features of the old tools are not currently available in the new equivalent.
toktx
create
ktxsc
encode
create
.Deflation of a KTX2 file with zlib or zstd.
The command-line syntax and semantics differ from the old tools including, but not limited to:
KTX 1.0 files are not supported by the new tools.
Words in multi-word option names are connected with
-
instead of_
.Individual option names may differ between the old and new tools.
The
ktx validate
tool may be stricter thanktx2check
or otherwise differ in behavior, as the new tool enforces all rules of the KTX 2.0 specification. In addition, all new tools that accept KTX 2.0 files as input will be validated in a similar fashion as they would be with thektx validate
tool and will fail on the first specification rule violation, if there is one. It also has the option to output the validation results in human readable text format or in JSON format (both formatted and minified options are available), as controlled by the--format
command-line option.The
ktx validate
tool also supports validating KTX 2.0 files against the additional restrictions defined by the KHR_texture_basisu extension. Use the--gltf-basisu
command-line option to verify glTF and WebGL compatibility.The new
ktx info
tool produces a unified and complete output of all metadata in KTX 2.0 files and can provide output in human readable text format or in JSON format (both formatted and minified options are available), as controlled by the--format
command-line option.The source repository also includes the JSON schemas that the JSON outputs of the
ktx info
andktx validate
tools comply to.The
ktx create
tool takes an explicit Vulkan format argument (--format
) instead of inferring the format based on the provided input files astoktx
, and thus doesn't perform any implicit color-space conversions except gamma 2.2 to sRGB. Use the--assign-oetf
,--convert-oetf
,--assign-primaries
, and the new--convert-primaries
for fine grained control over color-space interpretation and conversion.The
ktx create
tool does not support resizing or scaling liketoktx
, and, in general, does not perform any image transformations except the optional color-space conversion and mipmap generation options. Users should resize input images to the appropriate resolution before converting them to KTX 2.0 files.The
ktx create
andktx extract
tools consume and produce, respectively, image file formats that best suit the used Vulkan format. In general, barring special cases, 8-bit and 16-bit normalized integer formats are imported from and exported to PNG files, while integer and floating point formats are imported from and exported to EXR files based on predefined rules. This may be extended in the future using additional command line options and in response to support for other image file formats.The new tools and updated
libktx
support ZLIB supercompression besides the BasisLZ and Zstd supercompression schemes supported previously.Please refer to the manual pages or use the
--help
command-line option for further details on the options available and associated semantics for each individual command.Python Binding
A Python binding for
libktx
has been added. Applications written in Python can now uselibktx
functions. Huge thanks to @ShukantPal. Please download the appropriatepyktx
package from Releases as publishing to PyPI is not yet established.Changes
libktx
has been made much more robust to errors KTX files.libktx
now validates checksums when present in a Zstd data stream.libktx
has two new error codes it can return:KTX_DECOMPRESS_LENGTH_ERROR
andKTX_DECOMPRESS_CHECKSUM_ERROR
.libktx
now correctly process on all platforms utf8 file nameswith multi-byte code-points. Previously such names did not work on Windows.
Known Issues
Some image bits in output files encoded to ASTC, ETC1S/Basis-LZ or UASTC on arm64 devices may differ from those encoded from the same input images on x86_64 devices. The differences will not be human visible and will only show up in bit-exact comparisons.
Users making Basis Universal encoded or GPU block compressed textures for WebGL must be aware of WebGL restrictions with regard to texture size and may need to resize input images appropriately before using the
ktx create
tool, or use the--resize
feature of the oldtoktx
tool to produce an appropriately sized texture. In general, the dimensions of block compressed textures must be a multiple of the block size in WebGL and for WebGL 1.0 textures must have power-of-two dimensions. Additional portability restrictions apply for glTF per the KHR_texture_basisu extension which can be verified using the--gltf-basisu
command-line option of the newktx validate
tool.Basis Universal encoding results (both ETC1S/LZ and UASTC) are non-deterministic across platforms. Results are valid but level sizes and data will differ slightly. See issue #60 in the basis_universal repository.
UASTC RDO results differ from run to run unless multi-threading or RDO multi-threading is disabled. In
toktx
use--threads 1
for the former or--uastc_rdo_m
for the latter. As with the preceeding issue results are valid but level sizes will differ slightly. See issue #151 in the basis_universal repository.Neither the Vulkan nor GL loaders support depth/stencil textures.
Changes since v4.3.0-alpha3 (by part)
libktx
git subrepo push lib/dfdutils (ab9c277) (@MarkCallow)
Reenable build of loadtest apps on Windows arm64 CI (Reenable build of loadtest apps on Windows arm64 CI #802) (6c131f7) (@MarkCallow)
Utf-8/unicode support in legacy tools and lib. (Utf-8/unicode support in legacy tools and lib. #800) (1c5dc9c) (@MarkCallow)
Do not redefine NOMINMAX (Do not redefine NOMINMAX #801) (6dbb246) (@corporateshark)
libktx: update ktxTexture2_setImageFromStream to allow setting the entire level's data in one call (libktx: update ktxTexture2_setImageFromStream to allow setting the entire level's data in one call #794) (88fc7a6) (@AlexRouSg)
Update dfdutils-included vulkan_core.h. (Update dfdutils-included vulkan_core.h. #783) (9c223d9) (@MarkCallow)
Support for A8 and A1B5G5R5 formats (Support for A8 and A1B5G5R5 formats #785) (eeac620) (@aqnuep)
Major non-content documentation fixes. (Major non-content documentation fixes. #773) (e6a6a3b) (@MarkCallow)
Fix vendor-specific/tied memory property flag detection (Fixing vendor-specific/tied memory property flag detection #771) (a100217) (@toomuchvoltage)
Return KTX_NOT_FOUND when a GPU proc is not found. (Return KTX_NOT_FOUND when a GPU proc is not found. #770) (aeca5e6) (@MarkCallow)
Support for external allocators: (Support for external allocators: #748) (6856fdb) (@toomuchvoltage)
Fix ktx_strncasecmp (Fix ktx_strncasecmp #741) (1ae04f8) (@VaderY)
Use correct counter for indexing sample. (Use correct counter for indexing sample. #739) (3153e94) (@MarkCallow)
Tools
Disallow ASTC options when format is not ASTC (Disallow ASTC options when format is not ASTC #809) (d3ef5ed) (@aqnuep)
Remove unnecessary nullptr checks. (Remove unnecessary nullptr checks. #807) (072a4eb) (@MarkCallow)
Set tools and tests rpath on Linux. (Set tools and tests rpath on Linux. #804) (928612a) (@MarkCallow)
Utf-8/unicode support in legacy tools and lib. (Utf-8/unicode support in legacy tools and lib. #800) (1c5dc9c) (@MarkCallow)
Support building of loadtest apps with locally installed dependencies (Support building of loadtest apps with locally installed dependencies #799) (84ee59d) (@MarkCallow)
Update dfdutils-included vulkan_core.h. (Update dfdutils-included vulkan_core.h. #783) (9c223d9) (@MarkCallow)
Add UTF-8 filename support on Windows to ktxtools (Add UTF-8 filename support on Windows #788) (7b6eab5) (@aqnuep)
Support for A8 and A1B5G5R5 formats (Support for A8 and A1B5G5R5 formats #785) (eeac620) (@aqnuep)
KTXwriterScParams support (KTXwriterScParams support #779) (f8691ff) (@aqnuep)
Use -- in doc. to get -- not n-dash in output. (Use \-- in doc. to get -- not n-dash in output. #767) (7247900) (@MarkCallow)
Document convert_primaries option in toktx. (Document convert_primaries option in toktx. #765) (3049f5b) (@MarkCallow)
Do target_type changes only in toktx (Do target_type changes only in toktx #757) (2cf053c) (@MarkCallow)
Add support for fewer components in input files (Add support for fewer components in input files #755) (adcccf1) (@aqnuep)
Fix --convert-primaries (Fix --convert-primaries, issue #752 #753) (e437ec4) (@aqnuep)
Fix legacy app input from pipes on Windows. (Fix legacy app input from pipes on Windows. #749) (3e7fd0a) (@MarkCallow)
Improve output determinism and add internal ktxdiff tool for comparing test outputs (Improve output determinism and add internal ktxdiff tool for comparing test outputs #745) (7f67af7) (@VaderY)
Add KTX_WERROR config option (Add KTX_WERROR config option #746) (dab32db) (@MarkCallow)
Fix incorrect index calculations in image conversions (Fix incorrect index calculations in image conversions in ktx create #735) (682f456) (@VaderY)
Color-space and documentation related improvements for ktx create (Color-space and documentation related improvements for ktx create #732) (8b12216) (@VaderY)
Java Wrapper
Version 4.3.0-alpha3
Changes since v4.3.0-alpha2 (by part)
libktx
Improve documentation (Improve documentation #730) (69b1685) (@MarkCallow)
ktxtools\_*
toktx\_*
ktx
tool mainpage based on RELEASE_NOTES info.ktx
man page.$Date$
keyword smudging. Use it in CI and reference it fromREADME.md to avoid repetition of list of files needing smudging.
$Date$
keywords to some docs.$Date$
and #ident keywords that are no longer needed or used.khr\_df.h
relevant to the libktx API.Implement the extended scope and further improvements for ktxtools (Implement the extended scope and further improvements for ktxtools #722) (2189c54) (@VaderY)
Tools
Improve documentation (Improve documentation #730) (69b1685) (@MarkCallow)
ktxtools\_*
toktx\_*
ktx
tool mainpage based on RELEASE_NOTES info.ktx
man page.$Date$
keyword smudging. Use it in CI and reference it fromREADME.md to avoid repetition of list of files needing smudging.
$Date$
keywords to some docs.$Date$
and #ident keywords that are no longer needed or used.khr\_df.h
relevant to the libktx API.Implement the extended scope and further improvements for ktxtools (Implement the extended scope and further improvements for ktxtools #722) (2189c54) (@VaderY)
JS Wrappers
Improve documentation (Improve documentation #730) (69b1685) (@MarkCallow)
ktxtools\_*
toktx\_*
ktx
tool mainpage based on RELEASE_NOTES info.ktx
man page.$Date$
keyword smudging. Use it in CI and reference it fromREADME.md to avoid repetition of list of files needing smudging.
$Date$
keywords to some docs.$Date$
and #ident keywords that are no longer needed or used.khr\_df.h
relevant to the libktx API.Version 4.3.0-alpha2
Changes since v4.3.0-alpha1 (by part)
libktx
Fix alignment, removes tabs (8e4ee5d) (@abbaswasim)
Fix memory leak of input_image in ktxTexture2_CompressAstcEx (04bdffe) (@abbaswasim)
Version 4.3.0-alpha1
Changes since v4.2.1 (by part)
libktx
Tools
JS Wrappers
Java Wrapper
This discussion was created from the release v4.3.0-beta1.
Beta Was this translation helpful? Give feedback.
All reactions