evas: small doc improvement.

SVN revision: 74468
This commit is contained in:
Cedric BAIL 2012-07-27 02:59:24 +00:00
parent 58d6248b20
commit 65f245cb08
1 changed files with 7 additions and 1 deletions

View File

@ -7137,10 +7137,16 @@ EAPI Eina_Bool evas_object_image_pixels_import(Evas_Object *
EAPI void evas_object_image_pixels_get_callback_set(Evas_Object *obj, Evas_Object_Image_Pixels_Get_Cb func, void *data) EINA_ARG_NONNULL(1, 2);
/**
* Mark whether the given image object is dirty (needs to be redrawn).
* Mark whether the given image object is dirty and needs to request its pixels.
*
* @param obj The given image object.
* @param dirty Whether the image is dirty.
*
* This function will only properly work if a pixels get callback has been set.
*
* @warning use this function if you really know what you are doing.
*
* @see evas_object_image_pixels_get_callback_set()
*/
EAPI void evas_object_image_pixels_dirty_set(Evas_Object *obj, Eina_Bool dirty) EINA_ARG_NONNULL(1);