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 475e5f6442412c22fc27dda8b43b9ecb34e62ad7..118db7bf1fac8e9a377ee75cf4d805672017c5f5 100644 |
--- a/core/src/fxge/agg/src/fx_agg_driver.cpp |
+++ b/core/src/fxge/agg/src/fx_agg_driver.cpp |
@@ -417,7 +417,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) { |
@@ -479,7 +480,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) { |
@@ -508,7 +510,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) { |