mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
30 lines
1.1 KiB
C
Executable File
30 lines
1.1 KiB
C
Executable File
#ifndef GRAPH_H
|
|
#define GRAPH_H 1
|
|
|
|
extern void DrawFBoxBmp(char *buffer,int x,int y,int dx,int dy,unsigned color);
|
|
|
|
extern void DrawBoxBmp(char *buffer,int x,int y,int dx,int dy,unsigned color);
|
|
|
|
extern void DrawHlineBmp(char *buffer,int x,int y,int dx,int dy,unsigned color);
|
|
|
|
extern void DrawVlineBmp(char *buffer,int x,int y,int dx,int dy,unsigned color);
|
|
|
|
extern void DrawlineBmp(char *buffer,int x1,int y1,int x2,int y2,unsigned color);
|
|
|
|
extern void DrawPointBmp(char *buffer,int x,int y,unsigned color);
|
|
|
|
/*
|
|
extern void DrawBox(void *buf,box b,char t[],unsigned color);
|
|
|
|
extern void DrawBoxF(void *buf,box b,char t[],unsigned color,unsigned border);
|
|
*/
|
|
extern void DrawCircle(char *buf,int x, int y, int radius,unsigned rgba,int full);
|
|
|
|
extern void Retro_Draw_string(char *surf, signed short int x, signed short int y, const char *string, unsigned short int maxstrlen, unsigned short int xscale, unsigned short int yscale,unsigned int fg, unsigned int bg);
|
|
|
|
extern void Draw_text(char *buffer,int x,int y,unsigned fgcol,unsigned int bgcol ,int scalex,int scaley , int max,const char *string,...);
|
|
|
|
|
|
#endif
|
|
|