2021-07-03 00:29:37 -04:00
|
|
|
// MIT License
|
|
|
|
|
|
|
|
// Copyright (c) 2021 Evan Pezent
|
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
|
|
|
|
|
|
|
// ImPlot v0.10 WIP
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if defined(IMPLOT_BACKEND_ENABLE_OPENGL3)
|
2021-07-03 01:46:19 -04:00
|
|
|
#define IMPLOT_BACKEND_ENABLED
|
|
|
|
#define IMPLOT_BACKEND_HAS_HEATMAP
|
|
|
|
#define IMPLOT_BACKEND_HAS_COLORMAP
|
2021-07-03 00:29:37 -04:00
|
|
|
#elif defined(IMPLOT_BACKEND_ENABLE_METAL)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace ImPlot {
|
|
|
|
namespace Backend {
|
|
|
|
|
2021-07-03 01:46:19 -04:00
|
|
|
#ifdef IMPLOT_BACKEND_ENABLED
|
|
|
|
void* CreateContext();
|
|
|
|
void DestroyContext();
|
2021-07-03 14:10:35 -04:00
|
|
|
void ShowBackendMetrics();
|
2021-07-03 01:46:19 -04:00
|
|
|
void BustPlotCache();
|
|
|
|
void BustItemCache();
|
|
|
|
#else
|
|
|
|
inline void* CreateContext() { return nullptr; }
|
|
|
|
inline void DestroyContext() {}
|
2021-07-03 14:10:35 -04:00
|
|
|
inline void ShowBackendMetrics() {}
|
2021-07-03 01:46:19 -04:00
|
|
|
inline void BustPlotCache() {}
|
|
|
|
inline void BustItemCache() {}
|
|
|
|
#endif
|
2021-07-03 00:29:37 -04:00
|
|
|
|
2021-07-03 01:46:19 -04:00
|
|
|
#ifdef IMPLOT_BACKEND_HAS_COLORMAP
|
|
|
|
void AddColormap(const ImU32*, int, bool);
|
|
|
|
#else
|
|
|
|
inline void AddColormap(const ImU32*, int, bool) {}
|
2021-07-03 00:29:37 -04:00
|
|
|
#endif
|
|
|
|
|
2021-07-03 01:46:19 -04:00
|
|
|
#ifdef IMPLOT_BACKEND_HAS_HEATMAP
|
|
|
|
void SetHeatmapData(int itemID, const ImS16* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImS32* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImS64* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImS8* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImU16* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImU32* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImU64* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const ImU8* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const double* values, int rows, int cols);
|
|
|
|
void SetHeatmapData(int itemID, const float* values, int rows, int cols);
|
|
|
|
void RenderHeatmap(
|
2021-07-04 10:19:01 -04:00
|
|
|
int itemID, const void* data, ImGuiDataType data_type, int rows, int cols,
|
|
|
|
float scale_min, float scale_max, const ImVec2& coords_min,
|
|
|
|
const ImVec2& coords_max, const ImPlotPoint& bounds_min,
|
|
|
|
const ImPlotPoint& bounds_max, /*ImPlotScale*/int scale, bool reverse_y,
|
|
|
|
ImPlotColormap cmap, ImDrawList& DrawList);
|
2021-07-03 01:46:19 -04:00
|
|
|
void SetAxisLog(int itemID, bool x_is_log, bool y_is_log, const ImPlotPoint& bounds_min, const ImPlotPoint& bounds_max);
|
2021-07-03 00:29:37 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|