OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deviceMatrix
(Results
1 - 6
of
6
) sorted by null
/external/webkit/WebCore/platform/graphics/cg/
GraphicsContextCG.cpp
1003
CGAffineTransform
deviceMatrix
= CGContextGetUserSpaceToDeviceSpaceTransform(platformContext());
1004
if (CGAffineTransformIsIdentity(
deviceMatrix
)) {
1009
float deviceScaleX = sqrtf(
deviceMatrix
.a *
deviceMatrix
.a +
deviceMatrix
.b *
deviceMatrix
.b);
1010
float deviceScaleY = sqrtf(
deviceMatrix
.c *
deviceMatrix
.c +
deviceMatrix
.d *
deviceMatrix
.d)
[
all
...]
/external/skia/src/core/
SkPaint.cpp
[
all
...]
SkScalerContext.cpp
631
SkMatrix
deviceMatrix
;
632
this->getMatrixFrom2x2(&
deviceMatrix
);
633
m->postConcat(
deviceMatrix
);
/external/webkit/WebCore/platform/graphics/skia/
GraphicsContextSkia.cpp
829
const SkMatrix&
deviceMatrix
= platformContext()->canvas()->getTotalMatrix();
830
if (
deviceMatrix
.isIdentity())
833
float deviceScaleX = sqrtf(square(
deviceMatrix
.getScaleX())
834
+ square(
deviceMatrix
.getSkewY()));
835
float deviceScaleY = sqrtf(square(
deviceMatrix
.getSkewX())
836
+ square(
deviceMatrix
.getScaleY()));
[
all
...]
/external/skia/include/core/
SkPaint.h
[
all
...]
/external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp
764
rect = m_data->p()->
deviceMatrix
().mapRect(rect);
[
all
...]
Completed in 4274 milliseconds