diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2011-03-16 13:59:25 +0100 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2011-03-16 13:59:25 +0100 |
| commit | ac2878879847f965225e0f72c22ad17b513c16e6 (patch) | |
| tree | 9cb2aae4d28d8a85f99f90cef479a9ad9e651243 /lib/gdi/accel.cpp | |
| parent | 06a1a623534d89b1fd336dbf158dd2cee4425f13 (diff) | |
| parent | 63e32165a14ac9fc3539bfc9631330b5ca73b756 (diff) | |
| download | enigma2-ac2878879847f965225e0f72c22ad17b513c16e6.tar.gz enigma2-ac2878879847f965225e0f72c22ad17b513c16e6.zip | |
Merge branch 'obi/bcm_accel'
Diffstat (limited to 'lib/gdi/accel.cpp')
| -rw-r--r-- | lib/gdi/accel.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
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; } |
