diff options
Diffstat (limited to 'plugin/drumgizmo_plugin.h')
-rw-r--r-- | plugin/drumgizmo_plugin.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugin/drumgizmo_plugin.h b/plugin/drumgizmo_plugin.h index 98c6c26..36bf016 100644 --- a/plugin/drumgizmo_plugin.h +++ b/plugin/drumgizmo_plugin.h @@ -43,6 +43,7 @@ #include <texturedbox.h> #include <imagecache.h> +#include <image.h> class DrumGizmoPlugin #ifdef LV2 @@ -201,7 +202,10 @@ private: std::shared_ptr<GUI::MainWindow> plugin_gui; std::shared_ptr<DrumGizmo> drumgizmo; + std::uint32_t inlineDisplayBuffer[1024*1024]; + GUI::Image inline_display_image{":resources/logo.png"}; + bool inline_image_first_draw{true}; static constexpr std::size_t width{750}; static constexpr std::size_t height{400}; |