HomeSort by relevance Sort by last modified time
    Searched full:affinetransform (Results 76 - 100 of 169) sorted by null

1 2 34 5 6 7

  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 14 import java.awt.geom.AffineTransform;
226 AffineTransform tx = AffineTransform.getScaleInstance(1, -1);
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 26 import java.awt.geom.AffineTransform;
324 public boolean drawImage(Image img, AffineTransform xform, ImageObserver obs)
364 public void drawRenderableImage(RenderableImage img, AffineTransform xform)
369 public void drawRenderedImage(RenderedImage img, AffineTransform xform)
504 public AffineTransform getTransform()
569 public void setTransform(AffineTransform Tx)
584 public void transform(AffineTransform Tx)
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 27 import java.awt.geom.AffineTransform;
61 * Returns an {@link AffineTransform} matching the given Matrix.
63 public static AffineTransform getAffineTransform(Matrix m) {
118 public static float[] makeValues(AffineTransform matrix) {
133 public static Matrix_Delegate make(AffineTransform matrix) {
162 * Returns an {@link AffineTransform} matching the matrix.
164 public AffineTransform getAffineTransform() {
669 AffineTransform affineTransform = d.getAffineTransform();
670 AffineTransform inverseTransform = affineTransform.createInverse()
    [all...]
Region_Delegate.java 28 import java.awt.geom.AffineTransform;
238 AffineTransform mtx = new AffineTransform();
260 AffineTransform mtx = new AffineTransform();
366 path.setPathIterator(region.mArea.getPathIterator(new AffineTransform()));
Canvas_Delegate.java 34 import java.awt.geom.AffineTransform;
180 AffineTransform currentTx = g.getTransform();
181 // get the AffineTransform for the given skew.
183 AffineTransform matrixTx = Matrix_Delegate.getAffineTransform(mtx);
426 AffineTransform currentTx = snapshot.getTransform();
427 // get the AffineTransform of the given matrix
428 AffineTransform matrixTx = matrixDelegate.getAffineTransform();
453 // get the AffineTransform of the given matrix
454 AffineTransform matrixTx = matrixDelegate.getAffineTransform();
566 AffineTransform transform = canvasDelegate.getSnapshot().getTransform()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontHarfBuzz.cpp 111 AffineTransform savedMatrix = gc->getCTM();
112 gc->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y()));
113 gc->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y()));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilter.cpp 119 static bool createImageBuffer(const FloatRect& targetRect, const AffineTransform& absoluteTransform,
170 AffineTransform absoluteTransform;
176 filterData->shearFreeAbsoluteTransform = AffineTransform(absoluteTransform.xScale(), 0, 0, absoluteTransform.yScale(), 0, 0);
235 AffineTransform effectiveTransform;
RenderSVGResourceFilter.h 49 AffineTransform shearFreeAbsoluteTransform;
RenderSVGResourceGradient.cpp 100 AffineTransform gradientTransform;
107 AffineTransform additionalTextTransform;
RenderSVGRoot.cpp 266 childPaintInfo.applyTransform(AffineTransform::translation(adjustedPaintOffset.x(), adjustedPaintOffset.y()) * localToBorderBoxTransform());
338 m_localToBorderBoxTransform = AffineTransform(scale, 0, 0, scale, borderAndPadding.width() + translate.x(), borderAndPadding.height() + translate.y()) * m_localToBorderBoxTransform;
341 const AffineTransform& RenderSVGRoot::localToParentTransform() const
343 // Slightly optimized version of m_localToParentTransform = AffineTransform::translation(x(), y()) * m_localToBorderBoxTransform;
SVGInlineFlowBox.cpp 91 AffineTransform fragmentTransform;
SVGRenderSupport.h 65 static bool paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo&);
SVGTextQuery.cpp 343 AffineTransform fragmentTransform;
390 AffineTransform fragmentTransform;
430 AffineTransform fragmentTransform;
481 AffineTransform fragmentTransform;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPatternElement.h 52 virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const;
SVGSVGElement.cpp 58 #include "platform/transforms/AffineTransform.h"
417 return SVGTransform(static_cast<const AffineTransform&>(matrix));
420 AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScope mode) const
422 AffineTransform viewBoxTransform;
428 AffineTransform transform;
668 AffineTransform SVGSVGElement::viewBoxToViewTransform(float viewWidth, float viewHeight) const
673 AffineTransform ctm = SVGFitToViewBox::viewBoxToViewTransform(currentViewBoxRect(), m_viewSpec->preserveAspectRatioCurrentValue(), viewWidth, viewHeight);
678 AffineTransform transform;
SVGSVGElement.h 122 AffineTransform viewBoxToViewTransform(float viewWidth, float viewHeight) const;
173 virtual AffineTransform localCoordinateSpaceTransform(SVGElement::CTMScope) const;
SVGPreserveAspectRatio.cpp 29 #include "platform/transforms/AffineTransform.h"
278 AffineTransform SVGPreserveAspectRatio::getCTM(float logicalX, float logicalY, float logicalWidth, float logicalHeight, float physicalWidth, float physicalHeight) const
280 AffineTransform transform;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.cpp 32 #include "platform/transforms/AffineTransform.h"
110 AffineTransform zoomTransform;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp 34 #include "platform/transforms/AffineTransform.h"
93 FloatPoint FloatPoint::matrixTransform(const AffineTransform& transform) const
TransformState.cpp 105 // FIXME: We transform AffineTransform to TransformationMatrix. This is rather inefficient.
106 void TransformState::applyTransform(const AffineTransform& transformFromContainer, TransformAccumulation accumulate, bool* wasClamped)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.h 43 class AffineTransform;
119 void transform(const AffineTransform&);
Path.cpp 38 #include "platform/transforms/AffineTransform.h"
147 void Path::transform(const AffineTransform& xform)
339 AffineTransform ellipseTransform = AffineTransform::translation(p.x(), p.y()).rotate(rad2deg(rotation));
341 AffineTransform inverseEllipseTransform = ellipseTransform.inverse();
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TransparencyWinTest.cpp 36 #include "platform/transforms/AffineTransform.h"
434 AffineTransform cw90(0, 1, -1, 0, 0, 0);
512 AffineTransform left;
516 AffineTransform scale;
521 AffineTransform up;
553 AffineTransform scale;
612 AffineTransform scale;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontWin.cpp 86 AffineTransform savedMatrix = graphicsContext->getCTM();
87 graphicsContext->concatCTM(AffineTransform(0, -1, 1, 0, point.x(), point.y()));
88 graphicsContext->concatCTM(AffineTransform(1, 0, 0, 1, -point.x(), -point.y()));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestingTransformState.h 32 #include "platform/transforms/AffineTransform.h"

Completed in 360 milliseconds

1 2 34 5 6 7