Ector is a retained mode drawing library designed to work for and with a scenegraph such as Evas, which supports several types of rendering surface including software and gl.
Ector compiles automatically within EFL's build system, and is automatically linked with other components that need it. But it can also be built and used standalone, by compiling and linking your application with the compiler flags indicated by pkg-config
. For example:
* gcc -c -o my_main.o my_main.c `pkg-config --cflags ector` * * gcc -o my_application my_main.o `pkg-config --libs ector` *
See pkgconfig
Ector_Tutorial