__extern int caca_get_frame_count (caca_canvas_t const *)
Get the number of frames in a canvas.
__extern int caca_set_frame (caca_canvas_t *, int)
Activate a given canvas frame.
__extern char const * caca_get_frame_name (caca_canvas_t const *)
Get the current frame's name.
__extern int caca_set_frame_name (caca_canvas_t *, char const *)
Set the current frame's name.
__extern int caca_create_frame (caca_canvas_t *, int)
Add a frame to a canvas.
__extern int caca_free_frame (caca_canvas_t *, int)
Remove a frame from a canvas.
These functions provide high level routines for canvas frame insertion, removal, copying etc.
This function never fails.
Parameters
Returns
Referenced by caca_set_canvas_boundaries().
If the frame index is outside the canvas' frame range, nothing happens.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
References caca_add_dirty_rect().
Referenced by caca_set_canvas_boundaries().
This function never fails.
Parameters
Returns
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
The frame index indicates where the frame should be inserted. Valid values range from 0 to the current canvas frame count. If the frame index is greater than or equals the current canvas frame count, the new frame is appended at the end of the canvas. If the frame index is less than zero, the new frame is inserted at index 0.
The active frame does not change, but its index may be renumbered due to the insertion.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
Referenced by caca_set_canvas_boundaries().
The frame index indicates the frame to delete. Valid values range from 0 to the current canvas frame count minus 1. If the frame index is greater than or equals the current canvas frame count, the last frame is deleted.
If the active frame is deleted, frame 0 becomes the new active frame. Otherwise, the active frame does not change, but its index may be renumbered due to the deletion.
If an error occurs, -1 is returned and errno is set accordingly:
Parameters
Returns
References caca_add_dirty_rect().
Generated automatically by Doxygen for libcaca from the source code.