13
0

Fix --maschine builds (pure virtual)

This commit is contained in:
Robin Gareus 2021-08-13 21:53:18 +02:00
parent a563d5f0d7
commit b3fff25d5c
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,12 @@ Maschine2Canvas::request_redraw ()
request_redraw (Rect (0, 0, _width, _height));
}
void
Maschine2Canvas::queue_resize ()
{
/* nothing to do here, for now */
}
void
Maschine2Canvas::request_redraw (Rect const & r)
{

View File

@ -45,6 +45,7 @@ class Maschine2Canvas : public ArdourCanvas::Canvas
void request_redraw ();
void request_redraw (ArdourCanvas::Rect const &);
void queue_resize ();
bool vblank ();
Cairo::RefPtr<Cairo::Context> image_context() { return context; }