21 lines
600 B
XML
21 lines
600 B
XML
|
<code>
|
||
|
<id>drawText</id>
|
||
|
<category>lib</category>
|
||
|
<title lang="en-US">drawText</title>
|
||
|
<author>sup39(サポミク)</author>
|
||
|
<version>0.3</version>
|
||
|
<date>Jan 02, 2023</date>
|
||
|
<description lang="en-US">
|
||
|
```c
|
||
|
typedef struct {
|
||
|
int16_t x;
|
||
|
int16_t y;
|
||
|
uint32_t fontSize;
|
||
|
uint32_t colorTop;
|
||
|
uint32_t colorBot;
|
||
|
} DrawTextOpt;
|
||
|
void drawText(DrawTextOpt *opt, const char *fmt, ...);
|
||
|
```
|
||
|
</description>
|
||
|
</code>
|