OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deviceScaleY
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp
915
qreal
deviceScaleY
= sqrtf(deviceTransform.m21() * deviceTransform.m21() + deviceTransform.m22() * deviceTransform.m22());
917
QPoint deviceOrigin(frect.x() * deviceScaleX, frect.y() *
deviceScaleY
);
918
QPoint deviceLowerRight(frect.maxX() * deviceScaleX, frect.maxY() *
deviceScaleY
);
926
FloatPoint roundedOrigin = FloatPoint(deviceOrigin.x() / deviceScaleX, deviceOrigin.y() /
deviceScaleY
);
927
FloatPoint roundedLowerRight = FloatPoint(deviceLowerRight.x() / deviceScaleX, deviceLowerRight.y() /
deviceScaleY
);
[
all
...]
Completed in 42 milliseconds