mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 03:45:50 +08:00
Fix typo
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3779 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -2347,7 +2347,7 @@ int nxtk_bitmaptoolbar(NXTKWINDOW hfwnd,
|
|||||||
This structures provides the metrics for one glyph:
|
This structures provides the metrics for one glyph:
|
||||||
</p>
|
</p>
|
||||||
<ul><pre>
|
<ul><pre>
|
||||||
struct nx_fontmetic_s
|
struct nx_fontmetric_s
|
||||||
{
|
{
|
||||||
uint32_t stride : 2; /* Width of one font row in bytes */
|
uint32_t stride : 2; /* Width of one font row in bytes */
|
||||||
uint32_t width : 6; /* Width of the font in bits */
|
uint32_t width : 6; /* Width of the font in bits */
|
||||||
@@ -2364,7 +2364,7 @@ struct nx_fontmetic_s
|
|||||||
<ul><pre>
|
<ul><pre>
|
||||||
struct nx_fontbitmap_s
|
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 */
|
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
|
||||||
};
|
};
|
||||||
</pre></ul>
|
</pre></ul>
|
||||||
|
|||||||
@@ -55,7 +55,7 @@
|
|||||||
|
|
||||||
/* This structures provides the metrics for one glyph */
|
/* This structures provides the metrics for one glyph */
|
||||||
|
|
||||||
struct nx_fontmetic_s
|
struct nx_fontmetric_s
|
||||||
{
|
{
|
||||||
uint32_t stride : 2; /* Width of one font row in bytes */
|
uint32_t stride : 2; /* Width of one font row in bytes */
|
||||||
uint32_t width : 6; /* Width of the font in bits */
|
uint32_t width : 6; /* Width of the font in bits */
|
||||||
@@ -69,7 +69,7 @@ struct nx_fontmetic_s
|
|||||||
|
|
||||||
struct nx_fontbitmap_s
|
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 */
|
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user