X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7211bd40026fb8b00be038a59abcbfa29569b3ed..66fe4b3122e8be475ed557a6324e709eb1ca520a:/lib/gdi/accel.cpp diff --git a/lib/gdi/accel.cpp b/lib/gdi/accel.cpp index fc739e92..bd1439f2 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; }