summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-04-17 11:42:47 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-04-17 11:42:47 +0000
commitd3cdbd062ddde8bb91a596d2169f642681718994 (patch)
tree556c8808db0db095a05541b0c073b08b0c15e4e9 /nuttx
parent9a38bd92b56049c9c7aa7f861fe04b97069581ed (diff)
downloadpx4-nuttx-d3cdbd062ddde8bb91a596d2169f642681718994.tar.gz
px4-nuttx-d3cdbd062ddde8bb91a596d2169f642681718994.tar.bz2
px4-nuttx-d3cdbd062ddde8bb91a596d2169f642681718994.zip
update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2601 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/ChangeLog1
-rw-r--r--nuttx/Documentation/NuttX.html3
-rwxr-xr-xnuttx/graphics/nxglib/lcd/nxglib_fillrectangle.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index f6d88ef3d..5ee9f4ac5 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1092,4 +1092,5 @@
5.4 2010-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
* include/nuttx/lcd.h - Defines an LCD interface.
+ * graphics/nxglib/fb and lcd - Support LCD and framebuffer rasterizers for NX.
diff --git a/nuttx/Documentation/NuttX.html b/nuttx/Documentation/NuttX.html
index 53171e5b3..bad56cd40 100644
--- a/nuttx/Documentation/NuttX.html
+++ b/nuttx/Documentation/NuttX.html
@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
- <p>Last Updated: April 14, 2010</p>
+ <p>Last Updated: April 16, 2010</p>
</td>
</tr>
</table>
@@ -1692,6 +1692,7 @@ buildroot-1.8 2009-12-21 &lt;spudmonkey@racsa.co.cr&gt;
nuttx-5.4 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
* include/nuttx/lcd.h - Defines an LCD interface.
+ * graphics/nxglib/fb and lcd - Support LCD and framebuffer rasterizers for NX.
pascal-2.1 2010-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
diff --git a/nuttx/graphics/nxglib/lcd/nxglib_fillrectangle.c b/nuttx/graphics/nxglib/lcd/nxglib_fillrectangle.c
index 50f037afb..430f9cab6 100755
--- a/nuttx/graphics/nxglib/lcd/nxglib_fillrectangle.c
+++ b/nuttx/graphics/nxglib/lcd/nxglib_fillrectangle.c
@@ -109,7 +109,7 @@ void NXGL_FUNCNAME(nxgl_fillrectangle,NXGLIB_SUFFIX)
for (row = 0; row < nrows; row++)
{
- /* Draw the entire raster line */
+ /* Draw the raster line at this row */
(void)pinfo->putrun(row, rect->pt2.x, g_runbuffer, ncols);
}