efl/legacy/evas/src/modules/engines/quartz
Tom Hacohen 533ef3530e Evas font-engine: Added right_inset_get.
This lets us get the difference between the width and the advance
of a string pretty fast, which means we only need to calculate either
advance or width, because we can now calculate one from the other.

SVN revision: 58181
2011-03-29 13:52:22 +00:00
..
Evas_Engine_Quartz.h big patch from Samsung SAIT (Advanced research group) for async multi-frame 2010-05-21 07:10:45 +00:00
Makefile.am Don't create useless modules dir if we're not going to install modules. 2011-03-23 03:33:55 +00:00
README tim horton's quartz engine for evas. 2008-09-20 02:03:22 +00:00
evas_engine.c missing semicolon. you never cease to amaze me, edev. 2011-02-14 05:21:17 +00:00
evas_engine.h pass distcheck -> cedric! u br0ksed it! 2010-08-20 02:40:45 +00:00
evas_quartz_private.h Evas font-engine: Added right_inset_get. 2011-03-29 13:52:22 +00:00

README

================
==INSTALLATION==
================

Here's what I had to do to get Evas_Quartz working on a fresh install of Mac OS X Leopard (Evas_Quartz is currently not versions prior to 10.5):

1) Install all system software updates.

2) Install the XCode developer tools (this includes GCC).

3) Install macports.

4) Put /opt/local/bin in your path, permanently. (I put it in front of everything else, because the newer versions of autotools provided by ports are required to build evas)

5) With macports, install the following: m4, autoconf, automake, libtool, pkgconfig, zlib, libpng, jpeg, freetype, tiff.

6) Check out a version of Evas that includes Evas_Quartz (from CVS).

7) Set up your environment. You need to, at the very least, set:
	CFLAGS=-I/opt/local/include
	LDFLAGS=-L/opt/local/lib
	
8) Build and install eet.

9) Build and install evas. Make sure to use --enable-quartz when configuring!

==============
==KNOWN BUGS==
==============

****  A few different types of gradients don't currently draw.
**    Textbox drawing is a little bit off (because of hardcoded constants that shouldn't exist).