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

  /external/webkit/WebCore/platform/graphics/win/
TransformationMatrixWin.cpp 33 TransformationMatrix::operator XFORM() const
35 XFORM xform; local
36 xform.eM11 = a();
37 xform.eM12 = b();
38 xform.eM21 = c();
39 xform.eM22 = d();
40 xform.eDx = e();
41 xform.eDy = f();
43 return xform;
    [all...]
GraphicsContextWin.cpp 129 XFORM xform = TransformationMatrix().translate(-dstRect.x(), -dstRect.y()); local
131 ::SetWorldTransform(bitmapDC, &xform);
172 XFORM xform = TransformationMatrix().scaleNonUniform(size.width(), size.height());
173 ModifyWorldTransform(m_hdc, &xform, MWT_LEFTMULTIPLY);
180 XFORM xform = TransformationMatrix().rotate(degreesAngle); local
181 ModifyWorldTransform(m_hdc, &xform, MWT_LEFTMULTIPLY);
189 XFORM xform = TransformationMatrix().translate(x, y)
    [all...]
FontCGWin.cpp 174 XFORM xform; local
175 xform.eM11 = 1.0f;
176 xform.eM12 = 0.0f;
177 xform.eM21 = 0.0f;
178 xform.eM22 = 1.0f;
179 xform.eDx = -textRect.x();
180 xform.eDy = -textRect.y();
181 SetWorldTransform(hdc, &xform);
198 XFORM xform local
209 XFORM xform; local
226 XFORM xform; local
    [all...]
MediaPlayerPrivateQuickTimeWin.cpp 542 XFORM xform; local
543 xform.eM11 = 1.0f;
544 xform.eM12 = 0.0f;
545 xform.eM21 = 0.0f;
546 xform.eM22 = 1.0f;
547 xform.eDx = -r.x();
548 xform.eDy = -r.y();
549 SetWorldTransform(hdc, &xform);
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.h 51 typedef struct _XFORM XFORM;
53 typedef struct tagXFORM XFORM;
327 operator XFORM() const;
  /external/webkit/WebCore/plugins/win/
PluginViewWin.cpp 583 XFORM originalTransform;
590 XFORM transform = static_cast<XFORM>(ctm.toTransformationMatrix());
631 XFORM transform;
1066 XFORM transform;
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 1202 XFORM xform; local
    [all...]

Completed in 154 milliseconds