From fad5e45d2c0f79b51881f584ca88beadc21467f3 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sun, 26 Oct 2014 19:56:57 +0000 Subject: [PATCH] Minor tweaks --- imgui.cpp | 14 +++++++------- imgui.h | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index b9e518524..b1114af3e 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1,4 +1,4 @@ -// ImGui library v1.14 +// ImGui library v1.15 wip // See ImGui::ShowTestWindow() for sample code. // Read 'Programmer guide' below for notes on how to setup ImGui in your codebase. // Get latest version at https://github.com/ocornut/imgui @@ -3709,24 +3709,24 @@ static void Plot(ImGuiPlotType plot_type, const char* label, float (*values_gett RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, graph_bb.Min.y), label); } -struct ImGuiPlotData +struct ImGuiPlotArrayGetterData { const float* Values; size_t Stride; - ImGuiPlotData(const float* values, size_t stride) { Values = values; Stride = stride; } + ImGuiPlotArrayGetterData(const float* values, size_t stride) { Values = values; Stride = stride; } }; -float Plot_ArrayGetter(void* data, int idx) +static float Plot_ArrayGetter(void* data, int idx) { - ImGuiPlotData* plot_data = (ImGuiPlotData*)data; + ImGuiPlotArrayGetterData* plot_data = (ImGuiPlotArrayGetterData*)data; const float v = *(float*)((unsigned char*)plot_data->Values + (size_t)idx * plot_data->Stride); return v; } void PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, size_t stride) { - ImGuiPlotData data(values, stride); + ImGuiPlotArrayGetterData data(values, stride); ImGui::Plot(ImGuiPlotType_Lines, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } @@ -3737,7 +3737,7 @@ void PlotLines(const char* label, float (*values_getter)(void* data, int idx), v void PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, size_t stride) { - ImGuiPlotData data(values, stride); + ImGuiPlotArrayGetterData data(values, stride); ImGui::Plot(ImGuiPlotType_Histogram, label, &Plot_ArrayGetter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); } diff --git a/imgui.h b/imgui.h index 4ee9988a0..63461e702 100644 --- a/imgui.h +++ b/imgui.h @@ -1,4 +1,4 @@ -// ImGui library v1.14 +// ImGui library v1.15 wip // See .cpp file for commentary. // See ImGui::ShowTestWindow() for sample code. // Read 'Programmer guide' in .cpp for notes on how to setup ImGui in your codebase.