[Webkit-unassigned] [Bug 74010] New: [WK2] ShareableBitmap::paint() with scale factor is only implemented on Mac

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Dec 7 10:44:31 PST 2011


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

           Summary: [WK2] ShareableBitmap::paint() with scale factor is
                    only implemented on Mac
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P4
         Component: WebKit2
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: kbalazs at webkit.org


Not sure this is a bug, but I would like to close the other two that deals with that.
So, this function is only called from PluginProxy like:
  m_pluginBackingStore->paint(*graphicsContext, contentsScaleFactor(), IntPoint(), pluginBounds());

but the contensScaleFactor is only changing from 1 to any other value on Mac, like:

void PluginView::setDeviceScaleFactor(float scaleFactor)
{
    if (!m_isInitialized || !m_plugin)
        return;

    m_plugin->contentsScaleFactorChanged(scaleFactor);
}

but this is a Mac only method right now. So we don't need to handle the "!= 1" case currently.

-- 
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