summaryrefslogtreecommitdiff
path: root/libs/canvas
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-12-26 18:19:21 +0100
committerRobin Gareus <robin@gareus.org>2019-12-27 19:34:56 +0100
commitc3ab63a2eadece16ab5b5494d5815c147c6bd146 (patch)
treec80d11a43a79879ed8b25ac0cd75fa724f04f0f1 /libs/canvas
parent7b1a875f9c736b419285318147b3dc6b9c0a0e00 (diff)
Allow for per-widget image-surface backing
This is an intermediate commit, before replacing image surfaces with cairo pattern groups. The eventual goal is to reduce flickering and/or use CPU + bitblt for specific widgets instead of cairo graphics-cards accel. This also removes excessive calls to getenv() for every rendering operation.
Diffstat (limited to 'libs/canvas')
-rw-r--r--libs/canvas/canvas.cc49
-rw-r--r--libs/canvas/canvas/canvas.h2
2 files changed, 15 insertions, 36 deletions
diff --git a/libs/canvas/canvas.cc b/libs/canvas/canvas.cc
index c9b4ba891b..d19bbc68fe 100644
--- a/libs/canvas/canvas.cc
+++ b/libs/canvas/canvas.cc
@@ -22,10 +22,6 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
-#if !defined USE_CAIRO_IMAGE_SURFACE && !defined NDEBUG
-#define OPTIONAL_CAIRO_IMAGE_SURFACE
-#endif
-
/** @file canvas/canvas.cc
* @brief Implementation of the main canvas classes.
*/
@@ -63,6 +59,11 @@ Canvas::Canvas ()
, _bg_color (Gtkmm2ext::rgba_to_color (0, 1.0, 0.0, 1.0))
, _last_render_start_timestamp(0)
{
+#ifdef USE_CAIRO_IMAGE_SURFACE
+ _use_image_surface = true;
+#else
+ _use_image_surface = NULL != getenv("ARDOUR_IMAGE_SURFACE");
+#endif
set_epoch ();
}
@@ -839,18 +840,11 @@ void
GtkCanvas::on_size_allocate (Gtk::Allocation& a)
{
EventBox::on_size_allocate (a);
-#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
- if (getenv("ARDOUR_IMAGE_SURFACE")) {
-#endif
-#if defined USE_CAIRO_IMAGE_SURFACE || defined OPTIONAL_CAIRO_IMAGE_SURFACE
- /* allocate an image surface as large as the canvas itself */
-
- canvas_image.clear ();
- canvas_image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, a.get_width(), a.get_height());
-#endif
-#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
+ if (_use_image_surface) {
+ /* allocate an image surface as large as the canvas itself */
+ canvas_image.clear ();
+ canvas_image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, a.get_width(), a.get_height());
}
-#endif
#ifdef __APPLE__
if (_nsglview) {
@@ -885,27 +879,15 @@ GtkCanvas::on_expose_event (GdkEventExpose* ev)
const int64_t start = g_get_monotonic_time ();
#endif
-#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
Cairo::RefPtr<Cairo::Context> draw_context;
- Cairo::RefPtr<Cairo::Context> window_context;
- if (getenv("ARDOUR_IMAGE_SURFACE")) {
+ if (_use_image_surface) {
if (!canvas_image) {
canvas_image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, get_width(), get_height());
}
draw_context = Cairo::Context::create (canvas_image);
- window_context = get_window()->create_cairo_context ();
} else {
draw_context = get_window()->create_cairo_context ();
}
-#elif defined USE_CAIRO_IMAGE_SURFACE
- if (!canvas_image) {
- canvas_image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, get_width(), get_height());
- }
- Cairo::RefPtr<Cairo::Context> draw_context = Cairo::Context::create (canvas_image);
- Cairo::RefPtr<Cairo::Context> window_context = get_window()->create_cairo_context ();
-#else
- Cairo::RefPtr<Cairo::Context> draw_context = get_window()->create_cairo_context ();
-#endif
draw_context->rectangle (ev->area.x, ev->area.y, ev->area.width, ev->area.height);
draw_context->clip();
@@ -953,21 +935,16 @@ GtkCanvas::on_expose_event (GdkEventExpose* ev)
draw_context->paint ();
#endif
-#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
- if (getenv("ARDOUR_IMAGE_SURFACE")) {
-#endif
-#if defined USE_CAIRO_IMAGE_SURFACE || defined OPTIONAL_CAIRO_IMAGE_SURFACE
+ if (_use_image_surface) {
+ canvas_image->flush ();
/* now blit our private surface back to the GDK one */
-
+ Cairo::RefPtr<Cairo::Context> window_context = get_window()->create_cairo_context ();
window_context->rectangle (ev->area.x, ev->area.y, ev->area.width, ev->area.height);
window_context->clip ();
window_context->set_source (canvas_image, 0, 0);
window_context->set_operator (Cairo::OPERATOR_SOURCE);
window_context->paint ();
-#endif
-#ifdef OPTIONAL_CAIRO_IMAGE_SURFACE
}
-#endif
#ifdef CANVAS_PROFILE
const int64_t end = g_get_monotonic_time ();
diff --git a/libs/canvas/canvas/canvas.h b/libs/canvas/canvas/canvas.h
index 7733f07a95..30ec3d0786 100644
--- a/libs/canvas/canvas/canvas.h
+++ b/libs/canvas/canvas/canvas.h
@@ -186,6 +186,8 @@ protected:
virtual void pick_current_item (Duple const &, int state) = 0;
std::list<ScrollGroup*> scrollers;
+
+ bool _use_image_surface;
};
/** A canvas which renders onto a GTK EventBox */