[Webkit-unassigned] [Bug 36883] [Qt] Parallel painting in WebKit

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Apr 6 07:06:08 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=36883


Zoltan Herczeg <zherczeg at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #52413|0                           |1
        is obsolete|                            |




--- Comment #4 from Zoltan Herczeg <zherczeg at webkit.org>  2010-04-06 07:06:06 PST ---
Created an attachment (id=52634)
 --> (https://bugs.webkit.org/attachment.cgi?id=52634)
Third patch

This is the proposed layout of the platform independent version. Currently only
the fillRect and drawText are overwritten, but it is working under Qt.

There is only one hack so far:
FontFallbackList.h:

    const SimpleFontData* primarySimpleFontData(const Font* f)
    {.
#if ENABLE(PAINTTHREAD)
        ASSERT(isMainThread() || m_cachedPrimarySimpleFontData);
#else
        ASSERT(isMainThread());
#endif
        ...
    }

What is the purpose of the following member in FontQt.cpp:

QFont Font::font() const
{
   QFont f = primaryFont()->getQtFont();
   ...
}

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



More information about the webkit-unassigned mailing list