summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2022-10-13 11:03:53 -0400
committerSolomon Peachy <pizza@shaftnet.org>2022-10-13 11:08:06 -0400
commit418169aff8faf2cf90124cd95dba0af821cea73d (patch)
tree4fc206af57c9a07fba6cbcb3517fa946a7b84668 /apps/plugin.c
parentf9ea1fc79d6aaff9949a5b11ae011b4e04e0e9d9 (diff)
downloadrockbox-418169aff8faf2cf90124cd95dba0af821cea73d.tar.gz
rockbox-418169aff8faf2cf90124cd95dba0af821cea73d.zip
Revert "Remove YUV blitting functions and LCD modes"
This reverts commit fe6aa21e9eb88f49005863efd2003d0982920048. Change-Id: I8bb1e5d6c52ed1478002d2140ef494ec5d62b8e3
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 2b3b58a654..888a9e109c 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -222,6 +222,15 @@ static const struct plugin_api rockbox_api = {
222#if LCD_DEPTH >= 16 222#if LCD_DEPTH >= 16
223 lcd_bitmap_transparent_part, 223 lcd_bitmap_transparent_part,
224 lcd_bitmap_transparent, 224 lcd_bitmap_transparent,
225#if MEMORYSIZE > 2
226 lcd_blit_yuv,
227#if defined(TOSHIBA_GIGABEAT_F) || defined(SANSA_E200) || defined(SANSA_C200) \
228 || defined(IRIVER_H10) || defined(COWON_D2) || defined(PHILIPS_HDD1630) \
229 || defined(SANSA_FUZE) || defined(SANSA_E200V2) || defined(SANSA_FUZEV2) \
230 || defined(TOSHIBA_GIGABEAT_S) || defined(PHILIPS_SA9200)
231 lcd_yuv_set_options,
232#endif
233#endif /* MEMORYSIZE > 2 */
225#elif (LCD_DEPTH < 4) && (CONFIG_PLATFORM & PLATFORM_NATIVE) 234#elif (LCD_DEPTH < 4) && (CONFIG_PLATFORM & PLATFORM_NATIVE)
226 lcd_blit_mono, 235 lcd_blit_mono,
227 lcd_blit_grey_phase, 236 lcd_blit_grey_phase,