Releases: EmbarkStudios/spirv-tools-rs
Releases Β· EmbarkStudios/spirv-tools-rs
Release 0.10.0
Changed
- PR#38 updated to
vulkan-sdk-1.3.275
.
- PR#37 added
impl Clone
for Diagnostic
.
Fixed
- PR#36 fixed the parsing if diagnostic messages from spirv-tools binaries.
Release 0.8.0
Changed
- PR#29 updated to v2022.1 of spirv-tools.
Release 0.7.1
Fixed
- PR#28 fixed #27 by changing the
TryFrom
into a crate private method.
Release 0.6.1
Fixed
- PR#21 updated spirv-tools C++ code to address a GCC11 warning which caused compile failures due to warnings as errors.
- PR#23 fixed #22 by correcting a mismatch between optimization passes between the compiled and tool mode of the optimizer.
Release 0.6.0
Changed
- PR#20 changed the format of
Error::Display
to not include the spirv result code as it differs between compiled and tool mode since the spirv binaries don't provide the actual error that occurred.
Release 0.5.0
Changed
- PR#18 updated the upstream spirv-tools to
v2021.0-dev
, SPIRV-Tools v2021.0-dev v2020.5-198-g5af051b0
.
- PR#18 changed
Assembler::disassemble
to return a Option<String>
instead of just String
for an Ok
, in the cases where the call succeeded, but the actual string was null/empty.
Release 0.4.0
Changed
- PR#15 updated the upstream spirv-tools to
v2020.7-dev
, SPIRV-Tools v2020.7-dev v2020.6-50-g0a3a1712
.
Fixed
- PR#14 fixed an issue where an error was reported if the disassembled text was directly printed. Thanks @Danielmelody!
Release 0.3.1
Fixed
- PR#13 Fix the spirv-as and spirv-val tool arguments that were broken by PR#12.