Ignore:
Timestamp:
01/10/05 16:31:33 (8 years ago)
Author:
sam
Message:
  • Use font_load_* for all decoders.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/src/common.h

    r446 r448  
    2626        int xmin, xmax, ymin, ymax; 
    2727        int count; /* Black pixel count */ 
     28        char c; 
    2829    } *glyphs; 
     30    int size; 
    2931}; 
    3032 
     
    5860int setpixel(struct image *img, int x, int y, int r, int g, int b); 
    5961 
     62/* font operations */ 
     63struct font *font_load_fixed(char *file, char *chars); 
     64struct font *font_load_variable(char *file, char *chars); 
     65void font_free(struct font *font); 
     66 
    6067/* image filters */ 
    6168void filter_flood_fill(struct image *img, int x, int y, int r, int g, int b); 
Note: See TracChangeset for help on using the changeset viewer.