caca_dirty(3caca) | libcaca | caca_dirty(3caca) |
caca_dirty - libcaca dirty rectangle manipulation
libcaca canvas transformation
__extern int caca_disable_dirty_rect (caca_canvas_t
*)
Disable dirty rectangles. __extern int caca_enable_dirty_rect
(caca_canvas_t *)
Enable dirty rectangles. __extern int caca_get_dirty_rect_count
(caca_canvas_t *)
Get the number of dirty rectangles in the canvas. __extern int
caca_get_dirty_rect (caca_canvas_t *, int, int *, int *, int
*, int *)
Get a canvas's dirty rectangle. __extern int caca_add_dirty_rect
(caca_canvas_t *, int, int, int, int)
Add an area to the canvas's dirty rectangle list. __extern int
caca_remove_dirty_rect (caca_canvas_t *, int, int, int, int)
Remove an area from the dirty rectangle list. __extern int
caca_clear_dirty_rect_list (caca_canvas_t *)
Clear a canvas's dirty rectangle list.
These functions manipulate dirty rectangles for optimised blitting.
Disable dirty rectangle handling for all libcaca graphic calls. This is handy when the calling application needs to do slow operations within a known area. Just call caca_add_dirty_rect() afterwards.
This function is recursive. Dirty rectangles are only reenabled when caca_enable_dirty_rect() is called as many times.
This function never fails.
Parameters
Returns
This function can only be called after caca_disable_dirty_rect() was called.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
Get the number of dirty rectangles in a canvas. Dirty rectangles are areas that contain cells that have changed since the last reset.
The dirty rectangles are used internally by display drivers to optimise rendering by avoiding to redraw the whole screen. Once the display driver has rendered the canvas, it resets the dirty rectangle list.
Dirty rectangles are guaranteed not to overlap.
This function never fails.
Parameters
Returns
Get the canvas's given dirty rectangle coordinates. The index must be within the dirty rectangle count. See caca_get_dirty_rect_count() for how to compute this count.
If an error occurs, no coordinates are written in the pointer arguments, -1 is returned and errno is set accordingly:
Parameters
Returns
Add an invalidating zone to the canvas's dirty rectangle list. For more information about the dirty rectangles, see caca_get_dirty_rect().
This function may be useful to force refresh of a given zone of the canvas even if the dirty rectangle tracking indicates that it is unchanged. This may happen if the canvas contents were somewhat directly modified.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
Referenced by caca_blit(), caca_clear_canvas(), caca_fill_box(), caca_flip(), caca_flop(), caca_free_frame(), caca_invert(), caca_put_attr(), caca_put_char(), caca_rotate_180(), caca_rotate_left(), caca_rotate_right(), caca_set_canvas_boundaries(), caca_set_frame(), caca_stretch_left(), and caca_stretch_right().
Mark a cell area in the canvas as not dirty. For more information about the dirty rectangles, see caca_get_dirty_rect().
Values such that xmin > xmax or ymin > ymax indicate that the dirty rectangle is empty. They will be silently ignored.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
Empty the canvas's dirty rectangle list.
This function never fails.
Parameters
Returns
Referenced by caca_refresh_display().
Generated automatically by Doxygen for libcaca from the source code.
Tue Jul 12 2022 | Version 0.99.beta20 |