Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5305b763 authored by quddusc's avatar quddusc Committed by android-build-merger
Browse files

Merge "NDK docs: Fixed in-line comments for A8 and ARGB444 bitmap...

Merge "NDK docs: Fixed in-line comments for A8 and ARGB444 bitmap configurations. Test: Verified changes with romainguy@. Related bugs: b/26922523" am: 270fff6a am: f9c7e2a0 am: 3d2dbf4d
am: cc070b4d

Change-Id: Ia8e0c98670407a8218d1fe6522a46a5d51843a49
parents ecfa2566 cc070b4d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,9 +56,9 @@ enum AndroidBitmapFormat {
    ANDROID_BITMAP_FORMAT_RGBA_8888 = 1,
    /** Red: 5 bits, Green: 6 bits, Blue: 5 bits. **/
    ANDROID_BITMAP_FORMAT_RGB_565   = 4,
    /** Red: 4 bits, Green: 4 bits, Blue: 4 bits, Alpha: 4 bits. **/
    /** Deprecated in API level 13. Because of the poor quality of this configuration, it is advised to use ARGB_8888 instead. **/
    ANDROID_BITMAP_FORMAT_RGBA_4444 = 7,
    /** Deprecated. */
    /** Alpha: 8 bits. */
    ANDROID_BITMAP_FORMAT_A_8       = 8,
};