From 63e32165a14ac9fc3539bfc9631330b5ca73b756 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Mon, 26 Apr 2010 22:39:15 +0200 Subject: Added support for accelerated fill (requires updated drivers) --- lib/gdi/accel.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'lib/gdi/accel.cpp') diff --git a/lib/gdi/accel.cpp b/lib/gdi/accel.cpp index 9450ecca..5049f0b8 100644 --- a/lib/gdi/accel.cpp +++ b/lib/gdi/accel.cpp @@ -138,12 +138,14 @@ int gAccel::fill(gSurface *dst, const eRect &area, unsigned long col) col); return 0; #endif -#if 0 // def BCM_ACCEL - bcm_accel_fill( - dst->data_phys, dst->x, dst->y, dst->stride, - area.left(), area.top(), area.width(), area.height(), - col); - return 0; +#ifdef BCM_ACCEL + if (!m_bcm_accel_state) { + bcm_accel_fill( + dst->data_phys, dst->x, dst->y, dst->stride, + area.left(), area.top(), area.width(), area.height(), + col); + return 0; + } #endif return -1; } -- cgit v1.2.3