| Index: core/src/fxge/agg/src/fx_agg_driver.cpp
|
| diff --git a/core/src/fxge/agg/src/fx_agg_driver.cpp b/core/src/fxge/agg/src/fx_agg_driver.cpp
|
| index 045d58692449f1510b7ef2ebdafa7d1771101ca6..4afb5b4b0e2a7b80d0264c9def1536d413663647 100644
|
| --- a/core/src/fxge/agg/src/fx_agg_driver.cpp
|
| +++ b/core/src/fxge/agg/src/fx_agg_driver.cpp
|
| @@ -426,7 +426,8 @@ public:
|
| }
|
| }
|
| return;
|
| - } else if (Bpp == 3 || Bpp == 4) {
|
| + }
|
| + if (Bpp == 3 || Bpp == 4) {
|
| for (int col = col_start; col < col_end; col ++) {
|
| int src_alpha;
|
| if (clip_scan) {
|
| @@ -488,7 +489,8 @@ public:
|
| }
|
| }
|
| return;
|
| - } else if (Bpp == 3 || Bpp == 4) {
|
| + }
|
| + if (Bpp == 3 || Bpp == 4) {
|
| for (int col = col_start; col < col_end; col ++) {
|
| int src_alpha;
|
| if (clip_scan) {
|
| @@ -517,7 +519,8 @@ public:
|
| continue;
|
| }
|
| return;
|
| - } else if (Bpp == 1) {
|
| + }
|
| + if (Bpp == 1) {
|
| for (int col = col_start; col < col_end; col ++) {
|
| int src_alpha;
|
| if (clip_scan) {
|
|
|