mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-12 20:41:26 -07:00
fix old usage of table in mule_main; resolve to value in (sequence)
This commit is contained in:
@@ -2502,7 +2502,7 @@ E_TYPE_EXPAND_RANGE_FUNCTION_DEF(omit)
|
||||
|
||||
E_TYPE_EXPAND_INFO_FUNCTION_DEF(sequence)
|
||||
{
|
||||
E_TypeExpandInfo info = {0, eval.value.u64};
|
||||
E_TypeExpandInfo info = {0, e_value_eval_from_eval(eval).value.u64};
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
@@ -197,7 +197,7 @@ union Matrix4x4F32
|
||||
{
|
||||
float elements[4][4];
|
||||
};
|
||||
raddbg_type_view(Matrix4x4F32, table($.elements, $[0], $[1], $[2], $[3]));
|
||||
raddbg_type_view(Matrix4x4F32, columns($.elements, $[0], $[1], $[2], $[3]));
|
||||
|
||||
union PackedF16
|
||||
{
|
||||
@@ -427,7 +427,7 @@ type_coverage_eval_tests(void)
|
||||
6
|
||||
};
|
||||
|
||||
raddbg_pin(table(sequence(6), fixed.pairs[$], memory_[$]));
|
||||
raddbg_pin(columns(sequence(6), fixed.pairs[$], memory_[$]));
|
||||
raddbg_pin(basics);
|
||||
raddbg_pin(fixed);
|
||||
raddbg_pin(pointer);
|
||||
@@ -1886,7 +1886,7 @@ fancy_viz_eval_tests(void)
|
||||
{
|
||||
5, 2, 8, 6
|
||||
};
|
||||
raddbg_pin(table(node_indices, nodes[$]));
|
||||
raddbg_pin(columns(node_indices, nodes[$]));
|
||||
|
||||
//- rjf: bitmaps
|
||||
unsigned int background_color = 0x00000000;
|
||||
|
||||
Reference in New Issue
Block a user