|
|
| version 1.2, 2004/02/29 03:10:03 | version 1.3, 2005/02/07 14:46:13 |
|---|---|
| Line 1 | Line 1 |
| typedef struct { | typedef struct { |
| const BYTE *src; | const UINT8 *src; |
| const BYTE *src2; | const UINT8 *src2; |
| BYTE *dst; | UINT8 *dst; |
| int width; | int width; |
| int xbytes; | int xbytes; |
| int y; | int y; |
| int xalign; | int xalign; |
| int yalign; | int yalign; |
| BYTE dirty[SURFACE_WIDTH]; | UINT8 dirty[SURFACE_WIDTH]; |
| } _SDRAW, *SDRAW; | } _SDRAW, *SDRAW; |
| typedef void (SCRNCALL * SDRAWFN)(SDRAW sdraw, int maxy); | typedef void (SCRNCALL * SDRAWFN)(SDRAW sdraw, int maxy); |