0.3.0
Loading...
Searching...
No Matches
ImPlot.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include "implot.h"
17#include <vector>
18#include <cstdint>
19
20namespace NAV
21{
22
26void loadImPlotStyleFromConfigFile(const char* path, ImPlotStyle& imPlotStyle);
27
28#ifdef IMGUI_IMPL_OPENGL_LOADER_GL3W
29
31struct ImGuiScreenshotImageBuf
32{
38 ImGuiScreenshotImageBuf(int x, int y, size_t w, size_t h);
39
42 void SaveFile(const char* filename);
43
44 private:
46 void RemoveAlpha();
47
49 void FlipVertical();
50
51 size_t Width = 0;
52 size_t Height = 0;
53 std::vector<uint32_t> Data;
54};
55
56#endif
57
58} // namespace NAV
void loadImPlotStyleFromConfigFile(const char *path, ImPlotStyle &imPlotStyle)
Loads the ImPlotStyle from a json file.