1TICKIT_RENDERBUFFER_COPYRECTL(i3b)rary Functions ManTuIaClKIT_RENDERBUFFER_COPYRECT(3)
2
3
4
6 tickit_renderbuffer_copyrect, tickit_renderbuffer_moverect - copy or
7 move a rectangular region of a buffer
8
10 #include <tickit.h>
11
12 void tickit_renderbuffer_copyrect(TickitRenderBuffer *rb,
13 const TickitRect *dest, const TickitRect *src);
14 void tickit_renderbuffer_moverect(TickitRenderBuffer *rb,
15 const TickitRect *dest, const TickitRect *src);
16
17 Link with -ltickit.
18
20 tickit_renderbuffer_copyrect() copies the rectangular region in the
21 buffer from the rectangle given by src into the location given by dest.
22
23 tickit_renderbuffer_moverect() moves content in the rectangular region
24 in the buffer given by src into the location given by dest, resetting
25 the region migrated out from back to the skip state.
26
27 In each case, the two regions may overlap. These functions will also
28 copy cells in skip state; that is, cells set to skip in the source
29 region are set to skip in the destination.
30
32 These functions return no value.
33
35 tickit_renderbuffer_new(3), tickit_renderbuffer_flush_to_term(3),
36 tickit_renderbuffer(7), tickit(7)
37
38
39
40 TICKIT_RENDERBUFFER_COPYRECT(3)