From 270a8dcb96cd24a41294218915de110d9ff1ae9c Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 6 Dec 2008 14:41:52 +0000 Subject: Add default colors for all BPP git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1424 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/graphics/nxtk/nxtk_internal.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'nuttx') diff --git a/nuttx/graphics/nxtk/nxtk_internal.h b/nuttx/graphics/nxtk/nxtk_internal.h index e2403314d..aee0fa6a5 100644 --- a/nuttx/graphics/nxtk/nxtk_internal.h +++ b/nuttx/graphics/nxtk/nxtk_internal.h @@ -58,11 +58,23 @@ #endif #ifndef CONFIG_NXTK_BORDERCOLOR1 -# define CONFIG_NXTK_BORDERCOLOR1 0x00a9a9a9 +# if !defined(CONFIG_NX_DISABLE_32BPP) || !defined(CONFIG_NX_DISABLE_24BPP) +# define CONFIG_NXTK_BORDERCOLOR1 0x00a9a9a9 +# elif !defined(CONFIG_NX_DISABLE_16BPP) +# define CONFIG_NXTK_BORDERCOLOR1 0xad55 +# else +# define CONFIG_NXTK_BORDERCOLOR1 'B' +# endif #endif #ifndef CONFIG_NXTK_BORDERCOLOR2 -# define CONFIG_NXTK_BORDERCOLOR2 0x00696969 +# if !defined(CONFIG_NX_DISABLE_32BPP) || !defined(CONFIG_NX_DISABLE_24BPP) +# define CONFIG_NXTK_BORDERCOLOR2 0x00696969 +# elif !defined(CONFIG_NX_DISABLE_16BPP) +# define CONFIG_NXTK_BORDERCOLOR2 0x6b4d +# else +# define CONFIG_NXTK_BORDERCOLOR2 'b' +# endif #endif /**************************************************************************** -- cgit v1.2.3