Fix typo RBG -> RGB in several macros

This commit is contained in:
Gregory Nutt 2014-05-12 13:00:48 -06:00
parent df6e0bd33a
commit ba9e38f79a
3 changed files with 33 additions and 30 deletions

View File

@ -427,3 +427,6 @@
1.12 2014-xx-xx Gregory Nutt <gnutt@nuttx.org>
* libnxwidgets/include/nxconfig.hxx and libnxwidgets/src/cscaledbitmap.cxx:
Fix typo RBG -> RGB. This makes NxWidgets incompatible with versions of
NuttX 7.2 and below.

View File

@ -284,9 +284,9 @@
# endif
# define CONFIG_NXWIDGETS_FMT FB_FMT_RGB8_332
# define MKRGB RGBTO8
# define RGB2RED RBG8RED
# define RGB2GREEN RBG8GREEN
# define RGB2BLUE RBG8BLUE
# define RGB2RED RGB8RED
# define RGB2GREEN RGB8GREEN
# define RGB2BLUE RGB8BLUE
# define FONT_RENDERER nxf_convert_8bpp
#elif CONFIG_NXWIDGETS_BPP == 16
# ifdef CONFIG_NX_DISABLE_16BPP
@ -294,9 +294,9 @@
# endif
# define CONFIG_NXWIDGETS_FMT FB_FMT_RGB16_565
# define MKRGB RGBTO16
# define RGB2RED RBG16RED
# define RGB2GREEN RBG16GREEN
# define RGB2BLUE RBG16BLUE
# define RGB2RED RGB16RED
# define RGB2GREEN RGB16GREEN
# define RGB2BLUE RGB16BLUE
# define FONT_RENDERER nxf_convert_16bpp
#elif CONFIG_NXWIDGETS_BPP == 24
# ifdef CONFIG_NX_DISABLE_24BPP
@ -304,9 +304,9 @@
# endif
# define CONFIG_NXWIDGETS_FMT FB_FMT_RGB24
# define MKRGB RGBTO24
# define RGB2RED RBG24RED
# define RGB2GREEN RBG24GREEN
# define RGB2BLUE RBG24BLUE
# define RGB2RED RGB24RED
# define RGB2GREEN RGB24GREEN
# define RGB2BLUE RGB24BLUE
# define FONT_RENDERER nxf_convert_24bpp
#elif CONFIG_NXWIDGETS_BPP == 32
# ifdef CONFIG_NX_DISABLE_32BPP
@ -314,9 +314,9 @@
# endif
# define CONFIG_NXWIDGETS_FMT FB_FMT_RGB32
# define MKRGB RGBTO24
# define RGB2RED RBG24RED
# define RGB2GREEN RBG24GREEN
# define RGB2BLUE RBG24BLUE
# define RGB2RED RGB24RED
# define RGB2GREEN RGB24GREEN
# define RGB2BLUE RGB24BLUE
# define FONT_RENDERER nxf_convert_32bpp
#else
# error "Pixel depth not supported (CONFIG_NXWIDGETS_BPP)"

View File

@ -511,32 +511,32 @@ bool CScaledBitmap::rowColor(FAR uint8_t *row, b16_t column,
#if CONFIG_NXWIDGETS_FMT == FB_FMT_RGB8_332
uint8_t color = row[col1];
color1.r = RBG8RED(color);
color1.g = RBG8GREEN(color);
color1.b = RBG8BLUE(color);
color1.r = RGB8RED(color);
color1.g = RGB8GREEN(color);
color1.b = RGB8BLUE(color);
transparent1 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
color = row[col2];
color2.r = RBG8RED(color);
color2.g = RBG8GREEN(color);
color2.b = RBG8BLUE(color);
color2.r = RGB8RED(color);
color2.g = RGB8GREEN(color);
color2.b = RGB8BLUE(color);
transparent2 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
#elif CONFIG_NXWIDGETS_FMT == FB_FMT_RGB16_565
FAR uint16_t *row16 = (FAR uint16_t*)row;
uint16_t color = row16[col1];
color1.r = RBG16RED(color);
color1.g = RBG16GREEN(color);
color1.b = RBG16BLUE(color);
color1.r = RGB16RED(color);
color1.g = RGB16GREEN(color);
color1.b = RGB16BLUE(color);
transparent1 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
color = row16[col2];
color2.r = RBG16RED(color);
color2.g = RBG16GREEN(color);
color2.b = RBG16BLUE(color);
color2.r = RGB16RED(color);
color2.g = RGB16GREEN(color);
color2.b = RGB16BLUE(color);
transparent2 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
@ -560,16 +560,16 @@ bool CScaledBitmap::rowColor(FAR uint8_t *row, b16_t column,
#elif CONFIG_NXWIDGETS_FMT == FB_FMT_RGB32
FAR uint32_t *row32 = (FAR uint32_t*)row;
uint32_t color = row32[col1];
color1.r = RBG24RED(color);
color1.g = RBG24GREEN(color);
color1.b = RBG24BLUE(color);
color1.r = RGB24RED(color);
color1.g = RGB24GREEN(color);
color1.b = RGB24BLUE(color);
transparent1 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);
color = row32[col2];
color2.r = RBG24RED(color);
color2.g = RBG24GREEN(color);
color2.b = RBG24BLUE(color);
color2.r = RGB24RED(color);
color2.g = RGB24GREEN(color);
color2.b = RGB24BLUE(color);
transparent2 = (color == CONFIG_NXWIDGETS_TRANSPARENT_COLOR);