Thu Nov 18 18:42:45 GMT 1999

(gilbertt)

Changes to cloak.[ch]

If those functions are not going to be static any more, declare them in
cloak.h, so other epplets can use them


SVN revision: 1328
This commit is contained in:
Tom Gilbert 1999-11-18 17:08:12 +00:00
parent 30f5ffa096
commit 5b1e03039a
3 changed files with 21 additions and 10 deletions

View File

@ -629,3 +629,13 @@ Working towards cool new E-ScreenShoot features.
They're not there yet though :)
-------------------------------------------------------------------------------
Thu Nov 18 18:42:45 GMT 1999
(gilbertt)
Changes to cloak.[ch]
If those functions are not going to be static any more, declare them in
cloak.h, so other epplets can use them

View File

@ -15,17 +15,7 @@ int rr, gg, bb;
extern RGB_buf buf;
int load_val = 35;
void aa_line (int x1, int y1, int x2, int y2, unsigned char b,
unsigned char rr, unsigned char gg, unsigned char bb);
void set_col_pixel (int x, int y, unsigned char c, unsigned char rrr,
unsigned char ggg, unsigned char bbb);
/* static void set_pixel (int x, int y, unsigned char c); */
void aa_pixel (double wx, double wy, unsigned char c,
unsigned char rrr, unsigned char ggg,
unsigned char bbb);
void color_buf (unsigned char rr, unsigned char gg, unsigned char bb);
void fade_buf (int percent);
void scroll_buf (void);
static void
get_warpedcolor (unsigned char *rrr, unsigned char *ggg, unsigned char *bbb);

View File

@ -5,6 +5,17 @@ void draw_flame (void);
void set_flame_col (int j);
void flame_col (int r1, int g1, int b1, int r2, int g2, int b2, int r3,
int g3, int b3);
void aa_line (int x1, int y1, int x2, int y2, unsigned char b,
unsigned char rr, unsigned char gg, unsigned char bb);
void set_col_pixel (int x, int y, unsigned char c, unsigned char rrr,
unsigned char ggg, unsigned char bbb);
void aa_pixel (double wx, double wy, unsigned char c,
unsigned char rrr, unsigned char ggg,
unsigned char bbb);
void color_buf (unsigned char rr, unsigned char gg, unsigned char bb);
void fade_buf (int percent);
void scroll_buf (void);
/* Radar thing by me */
void draw_radar (void);
void draw_aa_radar (void);