diff options
author | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-02-27 06:14:46 +0000 |
---|---|---|
committer | reinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2006-02-27 06:14:46 +0000 |
commit | 99aac994aa825db8f1bac31e1c748049b45c3b8b (patch) | |
tree | a25268ffaeb5bc6340b8c520954fc0e1c8946346 /drv_generic_graphic.h | |
parent | f5ca09365013ad01f33db2d2f58b222d6391b38d (diff) | |
download | lcd4linux-99aac994aa825db8f1bac31e1c748049b45c3b8b.tar.gz |
[lcd4linux @ 2006-02-27 06:14:46 by reinelt]
graphic bug resulting in all black pixels solved
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@648 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_generic_graphic.h')
-rw-r--r-- | drv_generic_graphic.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drv_generic_graphic.h b/drv_generic_graphic.h index 830172a..c51dfdc 100644 --- a/drv_generic_graphic.h +++ b/drv_generic_graphic.h @@ -1,4 +1,4 @@ -/* $Id: drv_generic_graphic.h,v 1.11 2006/01/30 05:47:38 reinelt Exp $ +/* $Id: drv_generic_graphic.h,v 1.12 2006/02/27 06:14:46 reinelt Exp $ * * generic driver helper for graphic displays * @@ -23,6 +23,9 @@ * * * $Log: drv_generic_graphic.h,v $ + * Revision 1.12 2006/02/27 06:14:46 reinelt + * graphic bug resulting in all black pixels solved + * * Revision 1.11 2006/01/30 05:47:38 reinelt * graphic subsystem changed to full-color RGBA * @@ -89,6 +92,7 @@ extern void (*drv_generic_graphic_real_blit) (const int row, const int col, cons /* helper function to get pixel color or gray value */ extern RGBA drv_generic_graphic_rgb(const int row, const int col); extern unsigned char drv_generic_graphic_gray(const int row, const int col); +extern unsigned char drv_generic_graphic_black(const int row, const int col); /* generic functions and widget callbacks */ |