summaryrefslogtreecommitdiff
path: root/NxWidgets
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-12 13:00:48 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-12 13:00:48 -0600
commit8b0f3c04b993fd5fd5d81abee68c36ccb3bcfbf9 (patch)
treedafd8642debb0c9ffa03697a7d13816349935b93 /NxWidgets
parent088ea83de16b8961adb323d96b78fabf63f4b334 (diff)
downloadnuttx-8b0f3c04b993fd5fd5d81abee68c36ccb3bcfbf9.tar.gz
nuttx-8b0f3c04b993fd5fd5d81abee68c36ccb3bcfbf9.tar.bz2
nuttx-8b0f3c04b993fd5fd5d81abee68c36ccb3bcfbf9.zip
Fix typo RBG -> RGB in several macros
Diffstat (limited to 'NxWidgets')
-rw-r--r--NxWidgets/ChangeLog.txt3
-rw-r--r--NxWidgets/libnxwidgets/include/nxconfig.hxx24
-rw-r--r--NxWidgets/libnxwidgets/src/cscaledbitmap.cxx36
3 files changed, 33 insertions, 30 deletions
diff --git a/NxWidgets/ChangeLog.txt b/NxWidgets/ChangeLog.txt
index 6f2259867..deff82bde 100644
--- a/NxWidgets/ChangeLog.txt
+++ b/NxWidgets/ChangeLog.txt
@@ -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.
diff --git a/NxWidgets/libnxwidgets/include/nxconfig.hxx b/NxWidgets/libnxwidgets/include/nxconfig.hxx
index c2141775b..05c6d8422 100644
--- a/NxWidgets/libnxwidgets/include/nxconfig.hxx
+++ b/NxWidgets/libnxwidgets/include/nxconfig.hxx
@@ -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)"
diff --git a/NxWidgets/libnxwidgets/src/cscaledbitmap.cxx b/NxWidgets/libnxwidgets/src/cscaledbitmap.cxx
index 083868f70..ad0bd1953 100644
--- a/NxWidgets/libnxwidgets/src/cscaledbitmap.cxx
+++ b/NxWidgets/libnxwidgets/src/cscaledbitmap.cxx
@@ -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);