public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] api: export LCD and video to external apps
@ 2011-10-04  8:16 Che-Liang Chiou
  2011-10-04  8:16 ` [U-Boot] [PATCH 1/2] lcd: video: add clear and draw bitmap declaration Che-Liang Chiou
                   ` (3 more replies)
  0 siblings, 4 replies; 50+ messages in thread
From: Che-Liang Chiou @ 2011-10-04  8:16 UTC (permalink / raw)
  To: u-boot

This patch set exports LCD and video clearing and bitmap-rendering on
screen functions to external apps, and provides a unified interface
of accessing them.

Che-Liang Chiou (2):
  lcd: video: add clear and draw bitmap declaration
  api: export LCD and video to external apps

 api/Makefile         |    3 +-
 api/api.c            |   51 ++++++++++++++++++++++++++++++
 api/api_display.c    |   85 ++++++++++++++++++++++++++++++++++++++++++++++++++
 api/api_private.h    |    4 ++
 common/lcd.c         |   15 +++++---
 examples/api/demo.c  |   28 ++++++++++++++++
 examples/api/glue.c  |   31 ++++++++++++++++++
 examples/api/glue.h  |    5 +++
 include/api_public.h |   16 +++++++++
 include/lcd.h        |    2 +
 include/video.h      |    2 +
 include/video_font.h |    6 +++
 12 files changed, 241 insertions(+), 7 deletions(-)
 create mode 100644 api/api_display.c

-- 
1.7.3.1

^ permalink raw reply	[flat|nested] 50+ messages in thread

end of thread, other threads:[~2011-11-10 22:41 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04  8:16 [U-Boot] [PATCH 0/2] api: export LCD and video to external apps Che-Liang Chiou
2011-10-04  8:16 ` [U-Boot] [PATCH 1/2] lcd: video: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-06 18:34   ` Wolfgang Denk
2011-10-04  8:16 ` [U-Boot] [PATCH 2/2] api: export LCD and video to external apps Che-Liang Chiou
2011-10-06 18:33   ` Wolfgang Denk
2011-10-07  8:32     ` Che-liang Chiou
2011-10-07  9:05       ` Wolfgang Denk
2011-10-07  9:45         ` Che-liang Chiou
2011-10-09 20:00           ` Wolfgang Denk
2011-10-07  8:28 ` [U-Boot] [PATCH V2 0/2] " Che-Liang Chiou
2011-10-07  8:28   ` [U-Boot] [PATCH V2 1/2] lcd: video: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-07  8:28   ` [U-Boot] [PATCH V2 2/2] api: export LCD and video to external apps Che-Liang Chiou
2011-10-17 21:13     ` Anatolij Gustschin
2011-10-18  6:12       ` Che-liang Chiou
2011-10-18  7:17         ` Anatolij Gustschin
2011-10-18  8:24           ` Che-liang Chiou
2011-10-18  9:15 ` [U-Boot] [PATCH V3 0/4] " Che-Liang Chiou
2011-10-18  9:15   ` [U-Boot] [PATCH V3 1/4] lcd: video: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-18  9:15   ` [U-Boot] [PATCH V3 2/4] tools: logo: add static and unused to bmp arrays Che-Liang Chiou
2011-10-18  9:15   ` [U-Boot] [PATCH V3 3/4] video: add access to GraphicDevice struct Che-Liang Chiou
2011-10-19  8:27     ` Anatolij Gustschin
2011-10-18  9:15   ` [U-Boot] [PATCH V3 4/4] api: export LCD and video to external apps Che-Liang Chiou
2011-10-19  8:56     ` Anatolij Gustschin
2011-10-20  5:41       ` Che-liang Chiou
2011-10-20  5:38   ` [U-Boot] [PATCH V4 0/3] " Che-Liang Chiou
2011-10-20  5:38     ` [U-Boot] [PATCH V4 1/3] lcd: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-20 12:38       ` Mike Frysinger
2011-10-20  5:38     ` [U-Boot] [PATCH V4 2/3] tools: logo: add static and unused to bmp arrays Che-Liang Chiou
2011-10-20 12:42       ` Mike Frysinger
2011-10-20 18:43         ` Wolfgang Denk
2011-10-20  5:38     ` [U-Boot] [PATCH V4 3/3] api: export LCD device to external apps Che-Liang Chiou
2011-10-20 13:25       ` Mike Frysinger
2011-10-21  9:04   ` [U-Boot] [PATCH V5 0/4] " Che-Liang Chiou
2011-10-21  9:04     ` [U-Boot] [PATCH V5 1/4] lcd: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-30 15:16       ` Mike Frysinger
2011-10-30 18:21       ` [U-Boot] [PATCH v6 " Anatolij Gustschin
2011-11-10 22:31         ` Anatolij Gustschin
2011-10-21  9:04     ` [U-Boot] [PATCH V5 2/4] tools: logo: split bmp arrays from bmp_logo.h Che-Liang Chiou
2011-10-30 15:24       ` Mike Frysinger
2011-10-30 18:24       ` [U-Boot] [PATCH v6 " Anatolij Gustschin
2011-11-10 22:33         ` Anatolij Gustschin
2011-10-21  9:04     ` [U-Boot] [PATCH V5 3/4] font: split font data from video_font.h Che-Liang Chiou
2011-10-30 15:36       ` Mike Frysinger
2011-10-30 18:33       ` Anatolij Gustschin
2011-10-31  2:23         ` Che-liang Chiou
2011-11-10 22:36       ` Anatolij Gustschin
2011-10-21  9:04     ` [U-Boot] [PATCH V5 4/4] api: export LCD device to external apps Che-Liang Chiou
2011-11-10 22:41       ` Anatolij Gustschin
2011-10-21  9:07   ` [U-Boot] [PATCH V5 1/4] lcd: add clear and draw bitmap declaration Che-Liang Chiou
2011-10-30 15:37     ` Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox