Functions |
void | evas_output_size_set (Evas *e, int w, int h) |
| Sets the output size of the render engine of the given evas.
|
void | evas_output_size_get (const Evas *e, int *w, int *h) |
| Gets the output size of the render engine of the given evas.
|
void | evas_output_viewport_set (Evas *e, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) |
| Sets the output viewport of the given evas in evas units.
|
void | evas_output_viewport_get (const Evas *e, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) |
| Gets the render engine's output viewport co-ordinates in canvas units.
|
void | evas_output_framespace_set (Evas *e, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h) |
| Sets the output framespace size of the render engine of the given evas.
|
void | evas_output_framespace_get (const Evas *e, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h) |
| Gets the render engine's output framespace co-ordinates in canvas units.
|
This group provides functions that set and retrieve the output and viewport size of an evas.
Function Documentation
Gets the render engine's output framespace co-ordinates in canvas units.
- Since (EFL) :
- 1.1
- Since :
- 2.3
- Parameters:
-
[in] | e | The pointer to the Evas Canvas |
[out] | x | The pointer to the x variable to be filled in |
[out] | y | The pointer to the y variable to be filled in |
[out] | w | The pointer to the width variable to be filled in |
[out] | h | The pointer to the height variable to be filled in |
Sets the output framespace size of the render engine of the given evas.
- Since (EFL) :
- 1.1
- Since :
- 2.3
- Parameters:
-
[in] | e | The given evas |
[in] | x | The left coordinate in output units, usually pixels |
[in] | y | The top coordinate in output units, usually pixels |
[in] | w | The width in output units, usually pixels |
[in] | h | The height in output units, usually pixels |
Gets the output size of the render engine of the given evas.
- Since :
- 2.3
- Parameters:
-
[in] | e | The given evas |
[out] | w | The pointer to an integer to store the width in |
[out] | h | The pointer to an integer to store the height in |
Sets the output size of the render engine of the given evas.
- Since :
- 2.3
- Parameters:
-
[in] | e | The given evas |
[in] | w | The width in output units, usually pixels |
[in] | h | The height in output units, usually pixels |
Gets the render engine's output viewport co-ordinates in canvas units.
- Since :
- 2.3
- Parameters:
-
[in] | e | The pointer to the Evas Canvas |
[out] | x | The pointer to the x variable to be filled in |
[out] | y | The pointer to the y variable to be filled in |
[out] | w | The pointer to the width variable to be filled in |
[out] | h | The pointer to the height variable to be filled in |
Sets the output viewport of the given evas in evas units.
- Since :
- 2.3
- Parameters:
-
[in] | e | The given evas |
[in] | x | The top-left corner x value of the viewport |
[in] | y | The top-left corner y value of the viewport |
[in] | w | The width of the viewport
Must be greater than 0 . |
[in] | h | The height of the viewport
Must be greater than 0 . |