[Poppler-bugs] [Bug 11809] Major CPU time required to draw attached PDFs

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Thu Aug 6 00:58:39 PDT 2009


http://bugs.freedesktop.org/show_bug.cgi?id=11809


Carlos Garcia Campos <carlosgc at gnome.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE




--- Comment #4 from Carlos Garcia Campos <carlosgc at gnome.org>  2009-08-06 00:58:36 PST ---
This is another example where we are clipping too much and we don't even need
it. With this simple patch:

@@ -3221,11 +3221,13 @@ void Gfx::fillPatch(GfxPatch *patch, int nComps, int
depth) {
 void Gfx::doEndPath() {
   if (state->isCurPt() && clip != clipNone) {
     state->clip();
+#if 0
     if (clip == clipNormal) {
       out->clip(state);
     } else {
       out->eoClip(state);
     }
+#endif
   }
   clip = clipNone;
   state->clearPath();

the doc is rendered fast and the output is exactly the same. However there are
documents where such clip is necessary. 

*** This bug has been marked as a duplicate of bug 9724 ***


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the Poppler-bugs mailing list