On Mon, Oct 30, 2006 at 12:31:51PM +0100, Joerg Plewe wrote:
> Hi all!
> 
>  
> 
> I'm new to this list and quite new to Enlightenment as well.
> 
>  
> 
> While making up a software design, I'm interested whether it is possible to
> let evas render into a memory buffer that can be read out afterwards?
> 
>  
> 
> If so, how to?

Create an evas with the buffer engine.
The easiest is to use 
Ecore_Evas *ee = ecore_evas_buffer_new(width, height);
Then you can grab the pixels with ecore_evas_buffer_pixels_get(ee);
(the return is an array of 32 bit ARGB data, w*h long)

rephorm


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to