From: Chad Versace Date: Tue, 23 May 2017 22:50:13 +0000 (-0700) Subject: egl/android: Align channel masks in HAL_PIXEL_FORMAT table X-Git-Tag: android-x86-8.1-r1~13195 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0bcdcebc8591af772d31107667efcbf5917d3f92;p=android-x86%2Fexternal-mesa.git egl/android: Align channel masks in HAL_PIXEL_FORMAT table Improves readability. No change in behavior. Reviewed-by: Tapani Pälli Reviewed-by: Emil Velikov --- diff --git a/src/egl/drivers/dri2/platform_android.c b/src/egl/drivers/dri2/platform_android.c index 5da81edc6a7..bf476a6c56a 100644 --- a/src/egl/drivers/dri2/platform_android.c +++ b/src/egl/drivers/dri2/platform_android.c @@ -995,10 +995,10 @@ droid_add_configs_for_visuals(_EGLDriver *drv, _EGLDisplay *dpy) int format; unsigned int rgba_masks[4]; } visuals[] = { - { HAL_PIXEL_FORMAT_RGBA_8888, { 0xff, 0xff00, 0xff0000, 0xff000000 } }, - { HAL_PIXEL_FORMAT_RGBX_8888, { 0xff, 0xff00, 0xff0000, 0x0 } }, - { HAL_PIXEL_FORMAT_RGB_565, { 0xf800, 0x7e0, 0x1f, 0x0 } }, - { HAL_PIXEL_FORMAT_BGRA_8888, { 0xff0000, 0xff00, 0xff, 0xff000000 } }, + { HAL_PIXEL_FORMAT_RGBA_8888, { 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000 } }, + { HAL_PIXEL_FORMAT_RGBX_8888, { 0x000000ff, 0x0000ff00, 0x00ff0000, 0x00000000 } }, + { HAL_PIXEL_FORMAT_RGB_565, { 0x0000f800, 0x000007e0, 0x0000001f, 0x00000000 } }, + { HAL_PIXEL_FORMAT_BGRA_8888, { 0x00ff0000, 0x0000ff00, 0x000000ff, 0xff000000 } }, }; EGLint config_attrs[] = { EGL_NATIVE_VISUAL_ID, 0,