evas/cserve2: Always return FALSE to can_do_region when

using cserve2.
Return always FALSE since we are not implementing this load option yet.



SVN revision: 73374
This commit is contained in:
Rafael Antognolli 2012-07-05 18:42:30 +00:00
parent 8ef623d3b5
commit 56eeac8fbd
1 changed files with 4 additions and 0 deletions

View File

@ -523,6 +523,10 @@ eng_image_can_region_get(void *data __UNUSED__, void *image)
{
Image_Entry *im;
if (!image) return EINA_FALSE;
#ifdef EVAS_CSERVE2
if (evas_cserve2_use_get())
return EINA_FALSE;
#endif
im = image;
return ((Evas_Image_Load_Func*) im->info.loader)->do_region;
}