Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
20 | pmbaty | 1 | #ifndef _PMGEN_H_ |
2 | #define _PMGEN_H_ |
||
3 | |||
4 | #include "brender/br_types.h" |
||
5 | |||
6 | br_error _M_br_device_pixelmap_gen_match(br_device_pixelmap* self, br_device_pixelmap** newpm, br_token_value* tv); |
||
7 | |||
8 | br_error _M_br_device_pixelmap_gen_copy(br_device_pixelmap* self, br_device_pixelmap* src); |
||
9 | |||
10 | br_error _M_br_device_pixelmap_gen_copyTo(br_device_pixelmap* self, br_device_pixelmap* src); |
||
11 | |||
12 | br_error _M_br_device_pixelmap_gen_copyFrom(br_device_pixelmap* self, br_device_pixelmap* src); |
||
13 | |||
14 | br_error _M_br_device_pixelmap_gen_fill(br_device_pixelmap* self, br_uint_32 colour); |
||
15 | |||
16 | br_error _M_br_device_pixelmap_gen_doubleBuffer(br_device_pixelmap* self, br_device_pixelmap* src); |
||
17 | |||
18 | br_error _M_br_device_pixelmap_gen_copyDirty(br_device_pixelmap* self, br_device_pixelmap* src, br_rectangle* dirty, br_int_32 num_rects); |
||
19 | |||
20 | br_error _M_br_device_pixelmap_gen_copyToDirty(br_device_pixelmap* self, br_device_pixelmap* src, br_rectangle* dirty, br_int_32 num_rects); |
||
21 | |||
22 | br_error _M_br_device_pixelmap_gen_copyFromDirty(br_device_pixelmap* self, br_device_pixelmap* src, br_rectangle* dirty, br_int_32 num_rects); |
||
23 | |||
24 | br_error _M_br_device_pixelmap_gen_fillDirty(br_device_pixelmap* self, br_uint_32 colour, br_rectangle* dirty, br_int_32 num_rects); |
||
25 | |||
26 | br_error _M_br_device_pixelmap_gen_doubleBufferDirty(br_device_pixelmap* self, br_device_pixelmap* src, br_rectangle* dirty, br_int_32 num_rects); |
||
27 | |||
28 | br_error _M_br_device_pixelmap_gen_rectangle(br_device_pixelmap* self, br_rectangle* rect, br_uint_32 colour); |
||
29 | |||
30 | br_error _M_br_device_pixelmap_gen_rectangle2(br_device_pixelmap* self, br_rectangle* rect, br_uint_32 colour_tl, br_uint_32 colour_br); |
||
31 | |||
32 | br_error _M_br_device_pixelmap_gen_line(br_device_pixelmap* self, br_point* s, br_point* e, br_uint_32 colour); |
||
33 | |||
34 | br_error _M_br_device_pixelmap_gen_text(br_device_pixelmap* self, br_point* point, br_font* font, char* text, br_uint_32 colour); |
||
35 | |||
36 | br_error _M_br_device_pixelmap_gen_textBounds(br_device_pixelmap* self, br_rectangle* rect, br_font* font, char* text); |
||
37 | |||
38 | br_error _M_br_device_pixelmap_gen_copyBits(br_device_pixelmap* self, br_point* point, br_uint_8* src, br_uint_16 s_stride, br_rectangle* bit_rect, br_uint_32 colour); |
||
39 | |||
40 | br_error _M_br_device_pixelmap_gen_flush(br_device_pixelmap* self); |
||
41 | |||
42 | br_error _M_br_device_pixelmap_gen_synchronise(br_device_pixelmap* self, br_token sync_type, br_boolean block); |
||
43 | |||
44 | br_error _M_br_device_pixelmap_gen_directLock(br_device_pixelmap* self, br_boolean block); |
||
45 | |||
46 | br_error _M_br_device_pixelmap_gen_directUnlock(br_device_pixelmap* self); |
||
47 | |||
48 | #endif |