On Mon, Jun 2, 2008 at 11:51 AM, Mats Ekberg <[EMAIL PROTECTED]> wrote: > Hello all! > > We're using enlightenment for a project and we are having some > problems with a task that I'd expect to be quite simple. > > Our application draws a generated animation directly to a bitmap > buffer, which we want to display as a smart object on screen, layered > and positioned as any other normal evas/edje object. We're using a > custom evas engine for a backend.
which engine is this? it would be good to have it upstream, so we can fix it when api changes (and we'll change a lot before 1.0) > The rectangle representing where the smart object should be displayed > is specified in an .edc file as a "swallow" object. We have a pretty > good grip on smart objects, edc files and edje, but the problems start > when we need to display our custom image on screen. > > We have tried a few approaches, mostly using the > evas_object_image_pixels_get_callback_set() function, but seem to run > into problems that suggests that we're simply doing it the wrong way. > Perhaps some kind soul could point us in the right direction? Basically you need to point that area is dirty evas_object_image_data_update_add(), or use evas_object_image_data_set() that should do that for you. Image cache engine changed a lot in last months, your engine might be broken. -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -------------------------------------- MSN: [EMAIL PROTECTED] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
