From a661191b4bdd0547810893d240c3a0cbd1b122f2 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 22 Aug 2011 13:15:42 +0100 Subject: [PATCH] docs/cookbook: Point out that Cogl does not do AA drawing --- doc/cookbook/actors.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/cookbook/actors.xml b/doc/cookbook/actors.xml index 4daff46cb..ce274b7ea 100644 --- a/doc/cookbook/actors.xml +++ b/doc/cookbook/actors.xml @@ -974,6 +974,12 @@ star_actor_pick (ClutterActor *actor, + One important drawback of using Cogl path primitives is that + they will not produce high quality results; more specifically, + Cogl does not draw anti-aliased primitives. It is recommended to use + the Cairo API to draw during the paint sequence, and the Cogl API + to draw during the pick sequence. + If you need more flexibility than is available in the Cogl path API, you can make direct use of the CoglVertexBuffer API instead. This is a lower-level API, but could potentially