GUI: add a wavetable editor

This commit is contained in:
tildearrow 2021-12-18 17:54:26 -05:00
parent beceefd34b
commit 9d8a2f780b
7 changed files with 214 additions and 5 deletions

3
src/gui/plot_nolerp.h Normal file
View file

@ -0,0 +1,3 @@
#include "imgui.h"
void PlotNoLerp(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), int stride = sizeof(float));