Agptek Rocker: Build plugins

Patch provided by Aapo Tahkola.

Change-Id: I37a42a950d78d6b8aa3927ec7aeb30030f7be7a5
This commit is contained in:
Marcin Bukat 2018-03-02 21:53:55 +01:00
parent 0538ba3d59
commit fbb6a2ff6d
52 changed files with 500 additions and 12 deletions

View file

@ -115,6 +115,9 @@ static struct osd grey_osd;
#elif LCD_DEPTH == 24
# define _OSD_WIDTH2BYTES(w) ((w)*3)
# define _OSD_BYTES2WIDTH(b) ((b)/3)
#elif LCD_DEPTH == 32
# define _OSD_WIDTH2BYTES(w) ((w)*4)
# define _OSD_BYTES2WIDTH(b) ((b)/4)
#else /* other LCD depth */
# error Unknown LCD depth; please define macros
#endif /* LCD_DEPTH */