diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2010-04-26 13:13:48 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-10-06 22:17:31 +0200 |
| commit | 1459bfb440f2c43d230f60fba030455b2adea58a (patch) | |
| tree | 0acfa189950478ae00e102cdce757f17c39c306a /lib | |
| parent | 3ce829b7f04b042739f7beea5af0586af5e283a9 (diff) | |
| download | enigma2-1459bfb440f2c43d230f60fba030455b2adea58a.tar.gz enigma2-1459bfb440f2c43d230f60fba030455b2adea58a.zip | |
blit: pass 'flags' to bcm_accel_blit()
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/gdi/accel.cpp | 4 | ||||
| -rw-r--r-- | lib/gdi/bcm.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/gdi/accel.cpp b/lib/gdi/accel.cpp index 5e489eb3..9450ecca 100644 --- a/lib/gdi/accel.cpp +++ b/lib/gdi/accel.cpp @@ -32,7 +32,7 @@ extern void bcm_accel_blit( int dst_addr, int dst_width, int dst_height, int dst_stride, int src_x, int src_y, int width, int height, int dst_x, int dst_y, int dwidth, int dheight, - int pal_addr); + int pal_addr, int flags); extern void bcm_accel_fill( int dst_addr, int dst_width, int dst_height, int dst_stride, int x, int y, int width, int height, @@ -122,7 +122,7 @@ int gAccel::blit(gSurface *dst, const gSurface *src, const eRect &p, const eRect dst->data_phys, dst->x, dst->y, dst->stride, area.left(), area.top(), area.width(), area.height(), p.x(), p.y(), p.width(), p.height(), - pal_addr); + pal_addr, flags); return 0; } #endif diff --git a/lib/gdi/bcm.cpp b/lib/gdi/bcm.cpp index 3beb6772..12b5f22a 100644 --- a/lib/gdi/bcm.cpp +++ b/lib/gdi/bcm.cpp @@ -64,7 +64,7 @@ void bcm_accel_blit( int dst_addr, int dst_width, int dst_height, int dst_stride, int src_x, int src_y, int width, int height, int dst_x, int dst_y, int dwidth, int dheight, - int pal_addr) + int pal_addr, int flags) { C(0x43); // reset source C(0x53); // reset dest |
