mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
11 lines
No EOL
393 B
C++
11 lines
No EOL
393 B
C++
#pragma once
|
|
#include "imgui/imgui.h"
|
|
|
|
namespace satdump
|
|
{
|
|
namespace widgets
|
|
{
|
|
void ThemedPlotLines(ImVec4 bg_color, const char *label, const float *values, int values_count, int values_offset = 0, const char *overlay_text = NULL, float scale_min = FLT_MAX,
|
|
float scale_max = FLT_MAX, ImVec2 graph_size = ImVec2(0, 0));
|
|
}
|
|
} // namespace satdump
|