HomeSort by relevance Sort by last modified time
    Searched refs:TransformationMatrix (Results 26 - 50 of 65) sorted by null

12 3

  /external/webkit/WebCore/platform/graphics/
GraphicsContextPrivate.h 32 #include "TransformationMatrix.h"
83 TransformationMatrix pathTransform;
GraphicsLayer.h 41 #include "TransformationMatrix.h"
232 const TransformationMatrix& transform() const { return m_transform; }
233 virtual void setTransform(const TransformationMatrix& t) { m_transform = t; }
235 const TransformationMatrix& childrenTransform() const { return m_childrenTransform; }
236 virtual void setChildrenTransform(const TransformationMatrix& t) { m_childrenTransform = t; }
364 TransformationMatrix m_transform;
365 TransformationMatrix m_childrenTransform;
FloatPoint.h 65 class TransformationMatrix;
109 FloatPoint matrixTransform(const TransformationMatrix&) const;
BitmapImage.h 177 virtual void drawPattern(GraphicsContext*, const FloatRect& srcRect, const TransformationMatrix& patternTransform,
GraphicsContext.h 346 const TransformationMatrix& affineTransform() const;
347 TransformationMatrix& affineTransform();
  /external/webkit/WebCore/platform/graphics/skia/
TransformationMatrixSkia.cpp 32 #include "TransformationMatrix.h"
38 TransformationMatrix::operator SkMatrix() const
  /external/webkit/WebCore/platform/graphics/transforms/
SkewTransformOperation.h 52 virtual bool apply(TransformationMatrix& transform, const IntSize&) const
TransformOperation.h 28 #include "TransformationMatrix.h"
62 virtual bool apply(TransformationMatrix&, const IntSize& borderBoxSize) const = 0;
TransformOperations.h 44 void apply(const IntSize& sz, TransformationMatrix& t) const
RotateTransformOperation.h 60 virtual bool apply(TransformationMatrix& transform, const IntSize& /*borderBoxSize*/) const
ScaleTransformOperation.h 62 virtual bool apply(TransformationMatrix& transform, const IntSize&) const
AffineTransform.h 30 #include "TransformationMatrix.h"
54 class TransformationMatrix;
117 TransformationMatrix toTransformationMatrix() const;
TranslateTransformOperation.h 63 virtual bool apply(TransformationMatrix& transform, const IntSize& borderBoxSize) const
AffineTransform.cpp 358 TransformationMatrix AffineTransform::toTransformationMatrix() const
360 return TransformationMatrix(m_transform[0], m_transform[1], m_transform[2],
  /external/webkit/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 37 #include "TransformationMatrix.h"
129 XFORM xform = TransformationMatrix().translate(-dstRect.x(), -dstRect.y());
172 XFORM xform = TransformationMatrix().scaleNonUniform(size.width(), size.height());
180 XFORM xform = TransformationMatrix().rotate(degreesAngle);
189 XFORM xform = TransformationMatrix().translate(x, y);
GraphicsLayerCACF.h 63 virtual void setTransform(const TransformationMatrix&);
65 virtual void setChildrenTransform(const TransformationMatrix&);
GraphicsLayerCACF.cpp 47 static inline void copyTransform(CATransform3D& toT3D, const TransformationMatrix& t)
67 TransformationMatrix CAToTransform3D(const CATransform3D& fromT3D)
69 return TransformationMatrix(
232 void GraphicsLayerCACF::setTransform(const TransformationMatrix& t)
241 void GraphicsLayerCACF::setChildrenTransform(const TransformationMatrix& t)
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 59 virtual void setTransform(const TransformationMatrix&);
61 virtual void setChildrenTransform(const TransformationMatrix&);
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 27 #include "TransformationMatrix.h"
72 TransformationMatrix GraphicsContext::getCTM() const
75 return TransformationMatrix();
77 return m_data->transformationMatrix();
284 return FloatRect(enclosingIntRect(m_data->transformationMatrix().mapRect(rect)));
454 TransformationMatrix matrix = m_data->transformationMatrix();
496 void GraphicsContext::concatCTM(const TransformationMatrix& transform)
PainterOpenVG.cpp 32 #include "TransformationMatrix.h"
46 static bool isNonRotatedAffineTransformation(const TransformationMatrix& matrix)
106 TransformationMatrix surfaceTransformationMatrix;
420 TransformationMatrix PainterOpenVG::transformationMatrix() const
426 void PainterOpenVG::concatTransformationMatrix(const TransformationMatrix& matrix)
431 // We do the multiplication ourself using WebCore's TransformationMatrix rather than
438 void PainterOpenVG::setTransformationMatrix(const TransformationMatrix& matrix)
602 TransformationMatrix matrix = m_state->surfaceTransformationMatrix;
612 TransformationMatrix matrix = m_state->surfaceTransformationMatrix
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.h 68 class TransformationMatrix;
414 TransformationMatrix* transform() const { return m_transform.get(); }
418 TransformationMatrix currentTransform() const;
419 TransformationMatrix renderableTransform(PaintBehavior) const;
424 TransformationMatrix perspectiveTransform() const;
656 OwnPtr<TransformationMatrix> m_transform;
RenderLayerBacking.cpp 135 TransformationMatrix t;
333 TransformationMatrix t = owningLayer()->perspectiveTransform();
337 m_graphicsLayer->setChildrenTransform(TransformationMatrix());
343 m_clippingLayer->setChildrenTransform(TransformationMatrix());
345 m_graphicsLayer->setChildrenTransform(TransformationMatrix());
    [all...]
RenderLayer.cpp 83 #include "TransformationMatrix.h"
345 m_transform.set(new TransformationMatrix);
362 TransformationMatrix RenderLayer::currentTransform() const
365 return TransformationMatrix();
369 TransformationMatrix currTransform;
380 TransformationMatrix RenderLayer::renderableTransform(PaintBehavior paintBehavior) const
383 return TransformationMatrix();
386 TransformationMatrix matrix = *m_transform;
606 TransformationMatrix RenderLayer::perspectiveTransform() const
609 return TransformationMatrix();
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.h 73 virtual void setTransform(const TransformationMatrix&);
75 virtual void setChildrenTransform(const TransformationMatrix&);
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 205 TransformationMatrix transform;
206 TransformationMatrix childrenTransform;
695 void GraphicsLayerQt::setTransform(const TransformationMatrix& t)
703 void GraphicsLayerQt::setChildrenTransform(const TransformationMatrix& t)
    [all...]

Completed in 217 milliseconds

12 3