Working on the TGI library

git-svn-id: svn://svn.cc65.org/cc65/trunk@1325 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-06-22 21:53:58 +00:00
parent fb4bb7b383
commit 207c4a9e56
6 changed files with 32 additions and 13 deletions

View File

@@ -131,34 +131,33 @@ void __fastcall__ tgi_setcolor (unsigned char color);
unsigned char __fastcall__ tgi_getcolor (void);
/* Return the current drawing color */
unsigned char __fastcall__ tgi_getbkcolor (void);
/* Return the current background color */
void __fastcall__ tgi_setbkcolor (unsigned char color);
/* Set the background color */
unsigned char __fastcall__ tgi_getpixel (int x, int y);
/* Get the color value of a pixel */
void __fastcall__ tgi_setpixel (int x, int y);
/* Plot a point in the current drawing color */
void __fastcall__ tgi_gotoxy (int x, int y);
/* Set the graphics cursor to the given position. */
void __fastcall__ tgi_line (int x1, int y1, int x2, int y2);
/* Draw a line in the current drawing color */
/* Draw a line in the current drawing color. The graphics cursor will
* be set to x2/y2 by this call.
*/
void __fastcall__ tgi_lineto (int x2, int y2);
/* Draw a line in the current drawing color from the graphics cursor to the
* new end point.
* new end point. The graphics cursor will be updated to x2/y2.
*/
void __fastcall__ tgi_circle (int x, int y, unsigned char radius);
/* Draw a circle in the current drawing color */
/* Draw a circle in the current drawing color. */
void __fastcall__ tgi_outtext (int x, int y, const char* text);
/* Print a text in graphics mode */
void __fastcall__ tgi_bar (int x1, int y1, int x2, int y2);
/* Draw a bar (a filled rectangle) using the current color */
/* Draw a bar (a filled rectangle) using the current color. */

View File

@@ -86,7 +86,6 @@ extern unsigned char tgi_mode; /* Graphics mode or zero */
extern int tgi_curx; /* Current drawing cursor X */
extern int tgi_cury; /* Current drawing cursor Y */
extern unsigned char tgi_color; /* Current drawing color */
extern unsigned char tgi_bgcolor; /* Current background color */
extern unsigned tgi_xres; /* X resolution of the current mode */
extern unsigned tgi_yres; /* Y resolution of the current mode */
extern unsigned char tgi_colorcount; /* Number of available colors */