You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was thinking that it would be great to be able to save (and load?) RON files by the converter. The joys of RON is that it's very nice to inspect visually (by humans):
array elements have index numbers, which is critical for associating them with Handle(xxx) values through the rest of the module
nice representation of maps and enums
otherwise similar to pretty Debug implementation
ability to just tweak it by hand
To get this, we need a serde optional feature, implementation of Serialize+Deserialize for all IR objects, and also gfx-rs/rspirv#123 resolved.
The text was updated successfully, but these errors were encountered:
In general, it would be better to separate serialization from deserialization, since the latter is taking way more compile time. This would also let us avoid conflicting the serde feature with optional dependency.
I was thinking that it would be great to be able to save (and load?) RON files by the converter. The joys of RON is that it's very nice to inspect visually (by humans):
Handle(xxx)
values through the rest of the moduleDebug
implementationTo get this, we need a
serde
optional feature, implementation ofSerialize
+Deserialize
for all IR objects, and also gfx-rs/rspirv#123 resolved.The text was updated successfully, but these errors were encountered: