don't need this any more
haldean
1 year, 1 month ago
24 | 24 |
cimgui/imgui/imgui_widgets.cpp
|
25 | 25 |
cimgui/imgui/imgui_draw.cpp
|
26 | 26 |
cimgui/imgui/imgui_tables.cpp
|
27 | |
cimgui/imgui/imgui_demo.cpp
|
28 | |
implot/implot.h
|
29 | |
implot/implot_internal.h
|
30 | |
implot/implot.cpp
|
31 | |
implot/implot_items.cpp
|
32 | |
implot/implot_demo.cpp)
|
|
27 |
cimgui/imgui/imgui_demo.cpp)
|
33 | 28 |
target_include_directories(cimgui INTERFACE cimgui)
|
34 | 29 |
target_include_directories(cimgui PRIVATE cimgui/imgui)
|
35 | 30 |
|
24 | 24 |
cimgui/imgui/imgui_widgets.cpp
|
25 | 25 |
cimgui/imgui/imgui_draw.cpp
|
26 | 26 |
cimgui/imgui/imgui_tables.cpp
|
27 | |
cimgui/imgui/imgui_demo.cpp
|
28 | |
implot/implot.h
|
29 | |
implot/implot_internal.h
|
30 | |
implot/implot.cpp
|
31 | |
implot/implot_items.cpp
|
32 | |
implot/implot_demo.cpp)
|
|
27 |
cimgui/imgui/imgui_demo.cpp)
|
33 | 28 |
target_include_directories(cimgui INTERFACE cimgui)
|
34 | 29 |
target_include_directories(cimgui PRIVATE cimgui/imgui)
|
35 | 30 |
|
2 | 2 |
|
3 | 3 |
#include "AudioFile/AudioFile.h"
|
4 | 4 |
#include "imgui.h"
|
5 | |
#include "implot.h"
|
6 | 5 |
|
7 | 6 |
namespace qb {
|
8 | 7 |
|
0 | 0 |
#include "qb.hpp"
|
1 | 1 |
#include "qbshim.hpp"
|
2 | |
|
3 | |
#include "implot/implot.h"
|
4 | 2 |
|
5 | 3 |
qb_context_ptr
|
6 | 4 |
qb_init()
|
7 | 5 |
{
|
8 | |
ImPlot::CreateContext();
|
9 | 6 |
return new qb::context();
|
10 | 7 |
}
|
11 | 8 |
|
|
16 | 13 |
|
17 | 14 |
void qb_shutdown(qb_context_ptr ctx)
|
18 | 15 |
{
|
19 | |
ImPlot::DestroyContext();
|
20 | 16 |
reinterpret_cast<qb::context*>(ctx)->shutdown();
|
21 | 17 |
}
|