Last change
on this file since 4 was 2, checked in by stevenhl, 8 years ago |
Import sources from cwmm-full.zip dated 2005-03-21
|
File size:
337 bytes
|
Line | |
---|
1 | /*
|
---|
2 |
|
---|
3 | gbmrect.c - Subrectangle Transfer
|
---|
4 |
|
---|
5 | */
|
---|
6 |
|
---|
7 | #ifndef GBMRECT_H
|
---|
8 | #define GBMRECT_H
|
---|
9 |
|
---|
10 | extern void gbm_subrectangle(
|
---|
11 | const GBM *gbm,
|
---|
12 | int x, int y, int w, int h,
|
---|
13 | const byte *data_src, byte *data_dst
|
---|
14 | );
|
---|
15 |
|
---|
16 | extern void gbm_blit(
|
---|
17 | const byte *s, int sw, int sx, int sy,
|
---|
18 | byte *d, int dw, int dx, int dy,
|
---|
19 | int w, int h,
|
---|
20 | int bpp
|
---|
21 | );
|
---|
22 |
|
---|
23 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.