├── .gitignore ├── 3rdparty ├── ETFE.hpp ├── ThreadPool.h ├── _licenses │ ├── ThreadPool.lic │ ├── csv.lic │ ├── cxxopts.lic │ ├── json.lic │ ├── kissfft.lic │ ├── miniaudio.lic │ └── stb.lic ├── csv.h ├── cxxopts.hpp ├── exprtk.hpp ├── glad │ ├── CMakeLists.txt │ ├── include │ │ ├── KHR │ │ │ └── khrplatform.h │ │ └── glad │ │ │ └── glad.h │ └── src │ │ └── glad.c ├── imnodes │ ├── LICENSE.md │ ├── imnodes.cpp │ ├── imnodes.h │ └── imnodes_internal.h ├── json.hpp ├── kissfft │ ├── _kiss_fft_guts.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fft_log.h │ ├── kiss_fftr.c │ └── kiss_fftr.h ├── miniaudio.h ├── nativefiledialog-extended │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── src │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── nfd.h │ │ │ └── nfd.hpp │ │ ├── nfd_cocoa.m │ │ ├── nfd_gtk.cpp │ │ └── nfd_win.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── test_opendialog.c │ │ ├── test_opendialog_cpp.cpp │ │ ├── test_opendialogmultiple.c │ │ ├── test_opendialogmultiple_cpp.cpp │ │ ├── test_pickfolder.c │ │ └── test_savedialog.c └── stb │ ├── stb_image.h │ └── stb_perlin.h ├── CMakeLists.txt ├── LICENSE ├── README.md ├── common ├── App.cpp ├── App.h ├── Fonts │ ├── FontAwesome5.cpp │ ├── FontAwesome5Brands.cpp │ ├── Fonts.h │ ├── IconsFontAwesome5.h │ ├── IconsFontAwesome5Brands.h │ ├── RobotoBold.cpp │ ├── RobotoItalic.cpp │ ├── RobotoMonoBold.cpp │ ├── RobotoMonoItalic.cpp │ ├── RobotoMonoRegular.cpp │ └── RobotoRegular.cpp ├── Helpers.h ├── Image.h ├── Native.cpp ├── Native.h ├── Profiler.h └── Shader.h ├── demos ├── demo.cpp ├── filter.cpp ├── graph.cpp ├── mandel.cpp ├── maps.cpp ├── perlin.cpp ├── spectrogram.cpp ├── stocks.cpp └── voice.cpp ├── resources ├── audio │ └── aphex_twin_formula.wav └── shaders │ ├── color_pass.frag │ ├── color_uniform.frag │ ├── line_fringe_4.geom │ ├── line_fringe_6.geom │ ├── line_victoria.geom │ ├── plot_point.vert │ └── screen.vert ├── screenshots ├── filter.png ├── graph.png ├── mandel.png ├── maps.png ├── perlin.png ├── spectrogram.png └── stocks.png └── tests ├── benchmark.cpp ├── gpu.cpp └── plot_line_inline.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/ETFE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/ETFE.hpp -------------------------------------------------------------------------------- /3rdparty/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/ThreadPool.h -------------------------------------------------------------------------------- /3rdparty/_licenses/ThreadPool.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/ThreadPool.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/csv.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/csv.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/cxxopts.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/cxxopts.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/json.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/json.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/kissfft.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/kissfft.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/miniaudio.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/miniaudio.lic -------------------------------------------------------------------------------- /3rdparty/_licenses/stb.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/_licenses/stb.lic -------------------------------------------------------------------------------- /3rdparty/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/csv.h -------------------------------------------------------------------------------- /3rdparty/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/cxxopts.hpp -------------------------------------------------------------------------------- /3rdparty/exprtk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/exprtk.hpp -------------------------------------------------------------------------------- /3rdparty/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/glad/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/glad/include/glad/glad.h -------------------------------------------------------------------------------- /3rdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/glad/src/glad.c -------------------------------------------------------------------------------- /3rdparty/imnodes/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/imnodes/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/imnodes/imnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/imnodes/imnodes.cpp -------------------------------------------------------------------------------- /3rdparty/imnodes/imnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/imnodes/imnodes.h -------------------------------------------------------------------------------- /3rdparty/imnodes/imnodes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/imnodes/imnodes_internal.h -------------------------------------------------------------------------------- /3rdparty/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/json.hpp -------------------------------------------------------------------------------- /3rdparty/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /3rdparty/kissfft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/kiss_fft.c -------------------------------------------------------------------------------- /3rdparty/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /3rdparty/kissfft/kiss_fft_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/kiss_fft_log.h -------------------------------------------------------------------------------- /3rdparty/kissfft/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/kiss_fftr.c -------------------------------------------------------------------------------- /3rdparty/kissfft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/kissfft/kiss_fftr.h -------------------------------------------------------------------------------- /3rdparty/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/miniaudio.h -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/.gitignore -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/LICENSE -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/README.md -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/include/nfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/include/nfd.h -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/include/nfd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/include/nfd.hpp -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/nfd_cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/nfd_cocoa.m -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/nfd_gtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/nfd_gtk.cpp -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/src/nfd_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/src/nfd_win.cpp -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_opendialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_opendialog.c -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_opendialog_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_opendialog_cpp.cpp -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_opendialogmultiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_opendialogmultiple.c -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_opendialogmultiple_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_opendialogmultiple_cpp.cpp -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_pickfolder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_pickfolder.c -------------------------------------------------------------------------------- /3rdparty/nativefiledialog-extended/test/test_savedialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/nativefiledialog-extended/test/test_savedialog.c -------------------------------------------------------------------------------- /3rdparty/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/stb/stb_image.h -------------------------------------------------------------------------------- /3rdparty/stb/stb_perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/3rdparty/stb/stb_perlin.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/README.md -------------------------------------------------------------------------------- /common/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/App.cpp -------------------------------------------------------------------------------- /common/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/App.h -------------------------------------------------------------------------------- /common/Fonts/FontAwesome5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/FontAwesome5.cpp -------------------------------------------------------------------------------- /common/Fonts/FontAwesome5Brands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/FontAwesome5Brands.cpp -------------------------------------------------------------------------------- /common/Fonts/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/Fonts.h -------------------------------------------------------------------------------- /common/Fonts/IconsFontAwesome5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/IconsFontAwesome5.h -------------------------------------------------------------------------------- /common/Fonts/IconsFontAwesome5Brands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/IconsFontAwesome5Brands.h -------------------------------------------------------------------------------- /common/Fonts/RobotoBold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoBold.cpp -------------------------------------------------------------------------------- /common/Fonts/RobotoItalic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoItalic.cpp -------------------------------------------------------------------------------- /common/Fonts/RobotoMonoBold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoMonoBold.cpp -------------------------------------------------------------------------------- /common/Fonts/RobotoMonoItalic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoMonoItalic.cpp -------------------------------------------------------------------------------- /common/Fonts/RobotoMonoRegular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoMonoRegular.cpp -------------------------------------------------------------------------------- /common/Fonts/RobotoRegular.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Fonts/RobotoRegular.cpp -------------------------------------------------------------------------------- /common/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Helpers.h -------------------------------------------------------------------------------- /common/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Image.h -------------------------------------------------------------------------------- /common/Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Native.cpp -------------------------------------------------------------------------------- /common/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Native.h -------------------------------------------------------------------------------- /common/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Profiler.h -------------------------------------------------------------------------------- /common/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/common/Shader.h -------------------------------------------------------------------------------- /demos/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/demo.cpp -------------------------------------------------------------------------------- /demos/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/filter.cpp -------------------------------------------------------------------------------- /demos/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/graph.cpp -------------------------------------------------------------------------------- /demos/mandel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/mandel.cpp -------------------------------------------------------------------------------- /demos/maps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/maps.cpp -------------------------------------------------------------------------------- /demos/perlin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/perlin.cpp -------------------------------------------------------------------------------- /demos/spectrogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/spectrogram.cpp -------------------------------------------------------------------------------- /demos/stocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/stocks.cpp -------------------------------------------------------------------------------- /demos/voice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/demos/voice.cpp -------------------------------------------------------------------------------- /resources/audio/aphex_twin_formula.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/audio/aphex_twin_formula.wav -------------------------------------------------------------------------------- /resources/shaders/color_pass.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/color_pass.frag -------------------------------------------------------------------------------- /resources/shaders/color_uniform.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/color_uniform.frag -------------------------------------------------------------------------------- /resources/shaders/line_fringe_4.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/line_fringe_4.geom -------------------------------------------------------------------------------- /resources/shaders/line_fringe_6.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/line_fringe_6.geom -------------------------------------------------------------------------------- /resources/shaders/line_victoria.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/line_victoria.geom -------------------------------------------------------------------------------- /resources/shaders/plot_point.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/plot_point.vert -------------------------------------------------------------------------------- /resources/shaders/screen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/resources/shaders/screen.vert -------------------------------------------------------------------------------- /screenshots/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/filter.png -------------------------------------------------------------------------------- /screenshots/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/graph.png -------------------------------------------------------------------------------- /screenshots/mandel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/mandel.png -------------------------------------------------------------------------------- /screenshots/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/maps.png -------------------------------------------------------------------------------- /screenshots/perlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/perlin.png -------------------------------------------------------------------------------- /screenshots/spectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/spectrogram.png -------------------------------------------------------------------------------- /screenshots/stocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/screenshots/stocks.png -------------------------------------------------------------------------------- /tests/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/tests/benchmark.cpp -------------------------------------------------------------------------------- /tests/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/tests/gpu.cpp -------------------------------------------------------------------------------- /tests/plot_line_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epezent/implot_demos/HEAD/tests/plot_line_inline.h --------------------------------------------------------------------------------