You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
drivers: display: Change display buffer pitch from pixel to byte
The `pitch` in `struct display_buffer_descriptor` is defined as
"Number of pixels between consecutive rows in the data buffer".
Limitation:
Some display controller needs the pitch of byte be dividable
by an even value (e.g., 4, 64, ...), if the parameter pitch here
is the number of pixels, then the RGB888 (3 bytes per pixel) can't work
Change the unit of `pitch` from pixel to byte
Signed-off-by: Jason Yu <zejiang.yu@nxp.com>
0 commit comments