Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / ui / android / java / src / org / chromium / ui / gfx / BitmapHelper.java
index 9138902..10eb53a 100644 (file)
@@ -17,7 +17,12 @@ import org.chromium.base.JNINamespace;
 @JNINamespace("gfx")
 public class BitmapHelper {
     @CalledByNative
-    public static Bitmap createBitmap(int width, int height) {
+    private static Bitmap createBitmap(int width,
+                                      int height,
+                                      boolean is565Config) {
+        if (is565Config) {
+            return Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
+        }
         return Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
     }