Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 057162d9 authored by Vinu Deokaran's avatar Vinu Deokaran
Browse files

msm: mdss: fix for black stripe flicker in browse scroll



Fix a typo that was comparing the width instead of the height
parameter that lead to black stripe flickering when scrolling on
browser.

Change-Id: I10e57f876458f46d445b3404d09a5e7606aeb666
Signed-off-by: default avatarVinu Deokaran <vinud@codeaurora.org>
parent a0bba46a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -953,7 +953,7 @@ int config_ppp_scale(struct ppp_blit_op *blit_op, uint32_t *pppop_reg_ptr)
			PPP_WRITEL(phase_step_y, MDP3_PPP_SCALE_PHASEY_STEP);


			if (dstW > src->roi.width || dstW > src->roi.height)
			if (dstW > src->roi.width || dstH > src->roi.height)
				ppp_load_up_lut();

			if (mdp_blur)