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

  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ImageTexture.cpp 210 float scaleH = 1.0f;
211 getImageToLayerScale(&scaleW, &scaleH);
213 m.scaleNonUniform(scaleW, scaleH);
238 void ImageTexture::getImageToLayerScale(float* scaleW, float* scaleH) const
240 if (!scaleW || !scaleH)
253 *scaleH = static_cast<float>(layerArea.height()) / static_cast<float>(m_image->height());
273 float scaleH = 1.0f;
274 getImageToLayerScale(&scaleW, &scaleH);
277 visibleContentArea.setY(visibleContentArea.y() / scaleH);
278 visibleContentArea.setHeight(visibleContentArea.height() / scaleH);
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
AppTransition.java 340 float scaleH = mNextAppTransitionStartHeight / (float) appHeight;
341 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1,
343 computePivot(mNextAppTransitionStartY, scaleH));
399 float scaleH = appHeight / thumbHeight;
400 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH,
402 computePivot(mNextAppTransitionStartY, 1 / scaleH));
415 float scaleH = appHeight / thumbHeight;
416 a = new ScaleAnimation(scaleW, 1, scaleH, 1,
418 computePivot(mNextAppTransitionStartY, 1 / scaleH));
424 float scaleH = thumbHeight / appHeight
    [all...]

Completed in 3372 milliseconds