diff options
-rw-r--r-- | libgralloc/alloc_controller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgralloc/alloc_controller.cpp b/libgralloc/alloc_controller.cpp index 430d7fda7..9eb786eee 100644 --- a/libgralloc/alloc_controller.cpp +++ b/libgralloc/alloc_controller.cpp @@ -235,7 +235,7 @@ void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format, aligned_w = ALIGN(width, 16); break; case HAL_PIXEL_FORMAT_RAW10: - aligned_w = ALIGN(width * 10 /8, 16); + aligned_w = ALIGN(width * 10 / 8, 8); break; case HAL_PIXEL_FORMAT_YCbCr_420_SP_TILED: aligned_w = ALIGN(width, 128); |