HomeSort by relevance Sort by last modified time
    Searched defs:scaleY (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/graphics/chromium/
ImageLayerChromium.cpp 110 float scaleY = destSize.height() / static_cast<float>(sourceRect.size().height());
111 transform.scale3d(scaleX, scaleY, 1.0f);
  /external/proguard/src/proguard/gui/splash/
ImageSprite.java 36 private final VariableDouble scaleY;
45 * @param scaleY the variable y-scale of the image.
51 VariableDouble scaleY)
57 this.scaleY = scaleY;
69 double scale_y = scaleY.getDouble(time);
  /external/webkit/Source/WebCore/platform/graphics/
Image.cpp 92 float scaleX = 1.0f, scaleY = 1.0f;
97 scaleY = dstRect.height() / srcRect.height();
100 scaleX = scaleY;
102 scaleY = scaleX;
104 return FloatSize(scaleX, scaleY);
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageCairo.cpp 135 float scaleY = srcRect.height() / dstRect.height();
136 cairo_matrix_t matrix = { scaleX, 0, 0, scaleY, srcRect.x(), srcRect.y() };
  /external/webkit/Source/WebCore/svg/
SVGTransformDistance.cpp 78 float scaleY = toSVGTransform.scale().height() - fromSVGTransform.scale().height();
79 m_transform.scaleNonUniform(scaleX, scaleY);
181 float scaleY = absoluteValue ? fabsf(transform.scale().height()) : transform.scale().height();
182 m_transform.scaleNonUniform(scaleX, scaleY);
  /external/skia/src/core/
SkPicture.cpp 93 SkScalar scaleY = matrix->getScaleY();
101 SkASSERT(scaleY == 0 || skewY == 0);
SkPictureFlat.cpp 50 SkScalar scaleY = matrix->getScaleY();
51 if (scaleY != defaultMatrix.getScaleY())
53 "scaleY:%g ", SkScalarToFloat(scaleY));
SkPicturePlayback.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 161 qreal scaleY = worldTransform.m22();
164 target.y() * scaleY,
166 target.height() * scaleY).toAlignedRect();
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageWx.cpp 125 float scaleY = src.height() / dst.height();
131 adjustedDestRect.setLocation(FloatPoint(dst.x() - src.x() / scaleX, dst.y() - src.y() / scaleY));
132 adjustedDestRect.setSize(FloatSize(selfSize.width() / scaleX, selfSize.height() / scaleY));
  /cts/tests/tests/textureview/src/android/textureview/cts/
TextureViewTestActivity.java 46 ObjectAnimator scaleY = ObjectAnimator.ofFloat(mTexView, "scaleY", 0.3f, 1f);
48 animSet.play(rotate).with(fadeIn).with(scaleY);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageAndroid.cpp 277 float scaleY = 1;
280 scaleY = (float)image->origHeight() / origBitmap.height();
281 // SkDebugf("----- subsampled %g %g\n", scaleX, scaleY);
282 round_scaled(&srcR, srcRect, 1 / scaleX, 1 / scaleY);
310 matrix.preScale(SkFloatToScalar(scaleX), SkFloatToScalar(scaleY));
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEDisplacementMap.cpp 120 float scaleY = filter->applyVerticalScale(m_scale / 255);
129 int srcY = y + static_cast<int>(scaleY * srcPixelArrayB->get(dstIndex + m_yChannelSelector - 1) + scaleAdjustmentY);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix2fTest.java 157 float scaleY = 3.0f;
160 expectedData[2] *= scaleY;
161 expectedData[3] *= scaleY;
164 m.scale(scaleX, scaleY);
Matrix3fTest.java 148 float scaleY = 3.0f;
153 expectedData[3] *= scaleY;
154 expectedData[4] *= scaleY;
155 expectedData[5] *= scaleY;
161 m.scale(scaleX, scaleY, scaleZ);
168 expectedData[3] *= scaleY;
169 expectedData[4] *= scaleY;
170 expectedData[5] *= scaleY;
173 m.scale(scaleX, scaleY);
Matrix4fTest.java 143 float scaleY = 3.0f;
149 expectedData[4] *= scaleY;
150 expectedData[5] *= scaleY;
151 expectedData[6] *= scaleY;
152 expectedData[7] *= scaleY;
159 m.scale(scaleX, scaleY, scaleZ);
  /external/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 213 final float scaleY = mScaleY;
225 element.mDrawable.draw(x, y, scaleX, scaleY);
273 float scaleY = (float)h / mHeight;
275 final int viewportHeight = (int)(mHeight * scaleY);
278 mScaleY = scaleY;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.h 252 double scaleX, scaleY, scaleZ;
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 565 * This method will cause the View's <code>scaleY</code> property to be animated to the
572 public ViewPropertyAnimator scaleY(float value) {
578 * This method will cause the View's <code>scaleY</code> property to be animated by the
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 316 final float scaleY = event.getYPrecision() * TRACKBALL_SCALE;
319 event.getHistoricalY(i) * scaleY);
321 moveTrackball(event.getX() * scaleX, event.getY() * scaleY);
  /external/skia/src/ports/
SkFontHost_FreeType.cpp     [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java 342 float scaleY = getScaleY();
348 setScaleY(scaleY);
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp     [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 748 float scaleY = height / source.getHeight();
750 matrix.setScale(scaleX, scaleY);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 564 // (rect.width() * scaleX, rect.height() * scaleY) =
567 float scaleY = 1;
571 scaleY = (float) outputY / rect.height();
575 if (scaleY > 1f) scaleY = 1;
581 int rectHeight = Math.round(rect.height() * scaleY);
604 Math.max(scaleX, scaleY));
    [all...]

Completed in 1017 milliseconds

1 2