HomeSort by relevance Sort by last modified time
    Searched defs:scaleW (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ImageTexture.cpp 209 float scaleW = 1.0f;
211 getImageToLayerScale(&scaleW, &scaleH);
213 m.scaleNonUniform(scaleW, scaleH);
238 void ImageTexture::getImageToLayerScale(float* scaleW, float* scaleH) const
240 if (!scaleW || !scaleH)
252 *scaleW = static_cast<float>(layerArea.width()) / static_cast<float>(m_image->width());
272 float scaleW = 1.0f;
274 getImageToLayerScale(&scaleW, &scaleH);
275 visibleContentArea.setX(visibleContentArea.x() / scaleW);
276 visibleContentArea.setWidth(visibleContentArea.width() / scaleW);
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
AppTransition.java 339 float scaleW = mNextAppTransitionStartWidth / (float) appWidth;
341 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1,
342 computePivot(mNextAppTransitionStartX, scaleW),
398 float scaleW = appWidth / thumbWidth;
400 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
401 computePivot(mNextAppTransitionStartX, 1 / scaleW),
414 float scaleW = appWidth / thumbWidth;
416 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
417 computePivot(mNextAppTransitionStartX, 1 / scaleW),
423 float scaleW = thumbWidth / appWidth
    [all...]

Completed in 72 milliseconds