Merge "gralloc: dont hardcode 32bpp as RGBX"
This commit is contained in:
@@ -330,7 +330,7 @@ int fb_device_open(hw_module_t const* module, const char* name,
|
|||||||
if (status >= 0) {
|
if (status >= 0) {
|
||||||
int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3);
|
int stride = m->finfo.line_length / (m->info.bits_per_pixel >> 3);
|
||||||
int format = (m->info.bits_per_pixel == 32)
|
int format = (m->info.bits_per_pixel == 32)
|
||||||
? HAL_PIXEL_FORMAT_RGBX_8888
|
? (m->info.red.offset ? HAL_PIXEL_FORMAT_BGRA_8888 : HAL_PIXEL_FORMAT_RGBX_8888)
|
||||||
: HAL_PIXEL_FORMAT_RGB_565;
|
: HAL_PIXEL_FORMAT_RGB_565;
|
||||||
const_cast<uint32_t&>(dev->device.flags) = 0;
|
const_cast<uint32_t&>(dev->device.flags) = 0;
|
||||||
const_cast<uint32_t&>(dev->device.width) = m->info.xres;
|
const_cast<uint32_t&>(dev->device.width) = m->info.xres;
|
||||||
|
|||||||
Reference in New Issue
Block a user