Diff for /np2/generic/cmndraw.h between versions 1.8 and 1.9

version 1.8, 2004/04/09 10:52:20 version 1.9, 2005/02/07 14:46:10
Line 9  typedef union { Line 9  typedef union {
 } CMNPAL;  } CMNPAL;
   
 typedef struct {  typedef struct {
         BYTE    *ptr;          UINT8   *ptr;
         int             width;          int             width;
         int             height;          int             height;
         int             xalign;          int             xalign;
Line 27  void cmndraw_makegrad(RGB32 *pal, int pa Line 27  void cmndraw_makegrad(RGB32 *pal, int pa
   
 void cmndraw_fill(const CMNVRAM *vram, int x, int y,  void cmndraw_fill(const CMNVRAM *vram, int x, int y,
                                                                                 int cx, int cy, CMNPAL fg);                                                                                  int cx, int cy, CMNPAL fg);
 void cmndraw_setfg(const CMNVRAM *vram, const BYTE *src,  void cmndraw_setfg(const CMNVRAM *vram, const UINT8 *src,
                                                                                 int x, int y, CMNPAL fg);                                                                                  int x, int y, CMNPAL fg);
 void cmndraw_setpat(const CMNVRAM *vram, const BYTE *src,  void cmndraw_setpat(const CMNVRAM *vram, const UINT8 *src,
                                                                                 int x, int y, CMNPAL bg, CMNPAL fg);                                                                                  int x, int y, CMNPAL bg, CMNPAL fg);
 void cmddraw_text8(CMNVRAM *vram, int x, int y, const char *str, CMNPAL fg);  void cmddraw_text8(CMNVRAM *vram, int x, int y, const char *str, CMNPAL fg);
   
Line 46  enum { Line 46  enum {
 };  };
   
 typedef struct {  typedef struct {
         BYTE    *ptr;          UINT8   *ptr;
         int             width;          int             width;
         int             height;          int             height;
         int             align;          int             align;

Removed from v.1.8  
changed lines
  Added in v.1.9


RetroPC.NET-CVS <cvs@retropc.net>