HomeSort by relevance Sort by last modified time
    Searched refs:deviceScaleX (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp 1009 float deviceScaleX = sqrtf(deviceMatrix.a * deviceMatrix.a + deviceMatrix.b * deviceMatrix.b);
1012 CGPoint deviceOrigin = CGPointMake(rect.x() * deviceScaleX, rect.y() * deviceScaleY);
1013 CGPoint deviceLowerRight = CGPointMake((rect.x() + rect.width()) * deviceScaleX,
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp 833 float deviceScaleX = sqrtf(square(deviceMatrix.getScaleX())
838 FloatPoint deviceOrigin(rect.x() * deviceScaleX, rect.y() * deviceScaleY);
839 FloatPoint deviceLowerRight((rect.x() + rect.width()) * deviceScaleX,
853 FloatPoint roundedOrigin(deviceOrigin.x() / deviceScaleX,
855 FloatPoint roundedLowerRight(deviceLowerRight.x() / deviceScaleX,
    [all...]

Completed in 33 milliseconds