diff options
| author | 2017-02-09 21:41:59 +0000 | |
|---|---|---|
| committer | 2017-02-09 21:41:59 +0000 | |
| commit | 5305b76350ef05895b39a53952bd9c1948bc50ae (patch) | |
| tree | 201679786ff1e7cf5b7980efa0e407920194c9e4 | |
| parent | ecfa25669c918c021e4aa77f4e8fddab33e3df7e (diff) | |
| parent | cc070b4ddda802f6586fde69abd6ab2ec93e9e37 (diff) | |
Merge "NDK docs: Fixed in-line comments for A8 and ARGB444 bitmap configurations. Test: Verified changes with romainguy@. Related bugs: b/26922523" am: 270fff6a7c am: f9c7e2a002 am: 3d2dbf4d2f
am: cc070b4ddd
Change-Id: Ia8e0c98670407a8218d1fe6522a46a5d51843a49
| -rw-r--r-- | include/android/bitmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/android/bitmap.h b/include/android/bitmap.h index 261e64fac9..2def64dc90 100644 --- a/include/android/bitmap.h +++ b/include/android/bitmap.h @@ -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, }; |