mirror of
https://github.com/cc65/cc65.git
synced 2024-12-28 06:30:16 +00:00
Declaration of tgi_settextdir() added.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5101 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
2b32c14661
commit
edca940a86
@ -224,6 +224,7 @@ TGI_CLIP_TOP = $08
|
||||
.global _tgi_setdrawpage
|
||||
.global _tgi_setpalette
|
||||
.global _tgi_setpixel
|
||||
.global _tgi_settextdir
|
||||
.global _tgi_settextscale
|
||||
.global _tgi_settextstyle
|
||||
.global _tgi_setviewpage
|
||||
|
@ -228,6 +228,11 @@ void __fastcall__ tgi_pieslice (int x, int y, unsigned char rx, unsigned char ry
|
||||
void __fastcall__ tgi_bar (int x1, int y1, int x2, int y2);
|
||||
/* Draw a bar (a filled rectangle) using the current color. */
|
||||
|
||||
void __fastcall__ tgi_settextdir (unsigned char dir);
|
||||
/* Set the direction for text output. dir is one of the TGI_TEXT_XXX
|
||||
* constants.
|
||||
*/
|
||||
|
||||
void __fastcall__ tgi_settextscale (unsigned width, unsigned height);
|
||||
/* Set the scaling for text output. The scaling factors for width and height
|
||||
* are 8.8 fixed point values. This means that $100 = 1 $200 = 2 etc.
|
||||
|
Loading…
Reference in New Issue
Block a user