KhronosGroup / SPIRV-Visualizer

Client side only Javascript to visualize a SPIR-V Module binary
https://www.khronos.org/spir/visualizer/
Apache License 2.0
31 stars 5 forks source link

display signed ints as signed #4

Closed sfricke-samsung closed 2 years ago

sfricke-samsung commented 2 years ago

Add some logic to know if it is an signed int when a negative value to make it easier to know the constant value

%a = OpTypeInt 32 1
%b = OpConstant %a 4294967196

to

%a = OpTypeInt 32 1
%b = OpConstant %a -100