git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3779 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-07-13 04:09:16 +00:00
parent 4f3f2734d1
commit dde920aed0

View File

@ -2347,7 +2347,7 @@ int nxtk_bitmaptoolbar(NXTKWINDOW hfwnd,
This structures provides the metrics for one glyph:
</p>
<ul><pre>
struct nx_fontmetic_s
struct nx_fontmetric_s
{
uint32_t stride : 2; /* Width of one font row in bytes */
uint32_t width : 6; /* Width of the font in bits */
@ -2364,7 +2364,7 @@ struct nx_fontmetic_s
<ul><pre>
struct nx_fontbitmap_s
{
struct nx_fontmetic_s metric; /* Character metrics */
struct nx_fontmetric_s metric; /* Character metrics */
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
};
</pre></ul>