PENGUINLIONG / spirq-rs

Light weight SPIR-V reflection library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Signed and Unsigned scalar type variants have the same Debug output

farnoy opened this issue · comments

I found a small issue with the Debug implementation, I think Unsigned should format to u{} instead of i{}

Self::Unsigned(nbyte) => write!(f, "i{}", nbyte << 3),

Nice catch! Will fix it soon.

This will be a part of the next minor release in which the documentation is too reviewed. Should be published this week. Stay tune :)

Thanks for the quick fix!