HomeSort by relevance Sort by last modified time
    Searched refs:xScale (Results 1 - 22 of 22) sorted by null

  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DepthOfFieldFilter.java 54 private float xScale;
83 xScale = 1.0f / w;
86 material.setFloat("XScale", blurScale * xScale);
146 material.setFloat("XScale", blurScale * xScale);
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_Other.h 233 OMX_S32 xScale; /**< Current media time scale in Q16 format. */
246 OMX_S32 xScale; /**< This is a value in Q16 format which is used for
  /frameworks/native/include/media/openmax/
OMX_Other.h 250 OMX_S32 xScale; /**< Current media time scale in Q16 format. */
263 OMX_S32 xScale; /**< This is a value in Q16 format which is used for
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Other.h 233 OMX_S32 xScale; /**< Current media time scale in Q16 format. */
246 OMX_S32 xScale; /**< This is a value in Q16 format which is used for
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Other.h 233 OMX_S32 xScale; /**< Current media time scale in Q16 format. */
246 OMX_S32 xScale; /**< This is a value in Q16 format which is used for
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_Other.h 233 OMX_S32 xScale; /**< Current media time scale in Q16 format. */
246 OMX_S32 xScale; /**< This is a value in Q16 format which is used for
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 203 float xScale = srcRect.width() / destRect.width();
211 adjustedDestRect.move(-leftPadding / xScale, -topPadding / yScale);
214 adjustedDestRect.setWidth(subimageRect.width() / xScale);
225 adjustedDestRect.setLocation(FloatPoint(destRect.x() - srcRect.x() / xScale, destRect.y() - srcRect.y() / yScale));
226 adjustedDestRect.setSize(FloatSize(selfSize.width() / xScale, selfSize.height() / yScale));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 182 double xScale = hi.getScalledImgSize() / (double) mAwtImage.getWidth();
191 if (xScale == 1.0 && yScale == 1.0) {
195 scaledAwtImage = ImageUtils.scale(mAwtImage, xScale, yScale);
ImageUtils.java 527 * @param xScale x scale
531 public static BufferedImage scale(BufferedImage source, double xScale, double yScale) {
534 int destWidth = Math.max(1, (int) (xScale * sourceWidth));
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 177 float xScale = 1.0f / w;
181 material.setFloat("XScale", blurScale * xScale);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 156 double xScale = WIDTH / (double) width;
158 double scale = Math.min(xScale, yScale);
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.h 113 double xScale() const;
AffineTransform.cpp 44 double sx = matrix.xScale();
122 double AffineTransform::xScale() const
  /external/webkit/Source/WebCore/platform/mac/
WidgetMac.mm 254 CGContextScaleCTM(context, narrowPrecisionToFloat(widgetToViewTranform.xScale()), narrowPrecisionToFloat(widgetToViewTranform.yScale()));
291 CGContextScaleCTM(cgContext, narrowPrecisionToFloat(widgetToViewTranform.xScale()), narrowPrecisionToFloat(widgetToViewTranform.yScale()));
  /external/webkit/Source/WebCore/svg/
SVGTransform.cpp 146 return makeString("scale(", String::number(m_matrix.xScale()), ' ', String::number(m_matrix.yScale()), ')');
  /frameworks/native/services/surfaceflinger/
Layer.cpp 251 float xScale = float(crop.width()) / float(winWidth);
253 crop.left += int(ceilf(float(winCrop.left) * xScale));
255 crop.right -= int(ceilf(float(winWidth - winCrop.right) * xScale));
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInlineText.cpp 244 scalingFactor = narrowPrecisionToFloat(sqrt((pow(ctm.xScale(), 2) + pow(ctm.yScale(), 2)) / 2));
RenderSVGResourceFilter.cpp 174 filterData->shearFreeAbsoluteTransform = AffineTransform(absoluteTransform.xScale(), 0, 0, absoluteTransform.yScale(), absoluteTransform.e(), absoluteTransform.f());
SVGTextQuery.cpp 440 fragmentTransform.scale(1 / fragmentTransform.xScale(), 1 / fragmentTransform.yScale());
SVGInlineTextBox.cpp 76 textRun.setHorizontalGlyphStretch(narrowPrecisionToFloat(fragmentTransform.xScale()));
  /external/skia/src/gpu/
SkGpuDevice.cpp 748 static void scaleRect(SkRect* rect, float xScale, float yScale) {
749 rect->fLeft *= xScale;
751 rect->fRight *= xScale;
    [all...]
  /external/zxing/core/
core.jar 

Completed in 1471 milliseconds