mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 01:05:54 +08:00
Fix bad pixel type
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1337 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -167,8 +167,8 @@
|
||||
#else
|
||||
# define NXGL_MEMSET(dest,value,width) \
|
||||
{ \
|
||||
FAR nx_pixel_t *_ptr = (FAR ubyte*)dest; \
|
||||
nxgl_coord_t _npix = width; \
|
||||
FAR NXGL_PIXEL_T *_ptr = (FAR NXGL_PIXEL_T*)dest; \
|
||||
nxgl_coord_t _npix = width; \
|
||||
while (_npix--) \
|
||||
{ \
|
||||
*_ptr++ = value; \
|
||||
@@ -176,9 +176,9 @@
|
||||
}
|
||||
# define NXGL_MEMCPY(dest,src,width) \
|
||||
{ \
|
||||
FAR nx_pixel_t *_dptr = (FAR ubyte*)dest; \
|
||||
FAR nx_pixel_t *_sptr = (FAR ubyte*)src; \
|
||||
nxgl_coord_t _npix = width; \
|
||||
FAR NXGL_PIXEL_T *_dptr = (FAR NXGL_PIXEL_T*)dest; \
|
||||
FAR NXGL_PIXEL_T *_sptr = (FAR NXGL_PIXEL_T*)src; \
|
||||
nxgl_coord_t _npix = width; \
|
||||
while (_npix--) \
|
||||
{ \
|
||||
*_dptr++ = *_sptr++; \
|
||||
|
||||
Reference in New Issue
Block a user