rntviewer/src/render.h

26 lines
444 B
C
Raw Normal View History

2024-07-16 12:34:51 +00:00
struct Viewer {
MemoryEditor mem_edit;
2024-07-25 10:25:05 +00:00
f32 col_section[Sec_COUNT][3];
2024-07-16 10:04:38 +00:00
f32 col_key[3];
f32 col_checksum[3];
2024-07-19 14:31:48 +00:00
f32 col_highlight[3];
2024-07-25 10:25:05 +00:00
f32 col_page_start[3];
2024-07-12 08:07:27 +00:00
u64 base_display_addr;
2024-07-19 14:31:48 +00:00
b8 highlight_cluster;
u64 highlighted_cluster;
2024-07-15 16:02:55 +00:00
u64 latest_page_gone_to;
2024-07-18 15:43:44 +00:00
u64 latest_key_gone_to;
u64 latest_checksum_gone_to;
u64 latest_page_list_gone_to;
2024-07-11 12:27:19 +00:00
};
struct Edit_Bg_Color_Data {
2024-07-12 09:58:55 +00:00
RNTuple_Data *rndata;
2024-07-16 12:34:51 +00:00
Viewer viewer;
2024-07-11 12:27:19 +00:00
};