mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-11-06 21:55:41 +00:00
exynos4: hwc: fix stride when using G2D
Change-Id: I52677b41d1753fad405124c90477fa71c9dd255b
This commit is contained in:
parent
a2b4252873
commit
188028e3ca
1 changed files with 1 additions and 1 deletions
|
@ -1006,7 +1006,7 @@ static int post_fimd(hwc_context_t *ctx, hwc_display_contents_1_t* contents)
|
|||
private_handle_t* dst_hnd = private_handle_t::dynamicCast(win.dst_buf[win.current_buf]);
|
||||
config[window].phys_addr = dst_hnd->paddr;
|
||||
config[window].offset = 0;
|
||||
config[window].stride = EXYNOS4_ALIGN(config[window].w,16) * 4;
|
||||
config[window].stride = win.g2d_dst_img.stride;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue