|
Archeus 0.0.0
A C library and game engine that focuses on documentation
|
Go to the source code of this file.
Functions | |
| void | ARC_View_Create (ARC_View **view, ARC_Renderer *renderer, ARC_Rect bounds) |
| creates ARC_View type | |
| void | ARC_View_Destroy (ARC_View *view) |
| destroys ARC_View type | |
| void | ARC_View_Render (ARC_View *view, ARC_View_RenderFn renderFn, void *data) |
| renders callbacks contents within an ARC_View | |
| ARC_Rect | ARC_View_GetBounds (ARC_View *view) |
| gets bounds from ARC_View type | |
| void ARC_View_Create | ( | ARC_View ** | view, |
| ARC_Renderer * | renderer, | ||
| ARC_Rect | bounds ) |
| void ARC_View_Destroy | ( | ARC_View * | view | ) |
gets bounds from ARC_View type
| view | ARC_View to get bounds from |
Definition at line 33 of file view.c.
References ARC_View::bounds.
| void ARC_View_Render | ( | ARC_View * | view, |
| ARC_View_RenderFn | renderFn, | ||
| void * | data ) |
renders callbacks contents within an ARC_View
| view | ARC_View to be renedered to |
| renderFn | function which contents will render to given ARC_View |
| data | data to be used in renderFn |
Definition at line 17 of file view.c.
References ARC_ERRNO_DATA, ARC_View::bounds, and ARC_View::renderer.