Searched defs:sx (Results 26 - 30 of 30) sorted by relevance

12

/frameworks/base/libs/hwui/
H A DSkiaCanvas.cpp99 virtual void scale(float sx, float sy) override;
100 virtual void skew(float sx, float sy) override;
441 void SkiaCanvas::scale(float sx, float sy) { argument
442 mCanvas->scale(sx, sy);
445 void SkiaCanvas::skew(float sx, float sy) { argument
446 mCanvas->skew(sx, sy);
H A DOpenGLRenderer.cpp1980 const float sx = x - texture->left + textShadow.dx; local
1989 .setModelViewMapUnitToRect(Rect(sx, sy, sx + texture->width(), sy + texture->height()))
2015 float sx, sy; local
2016 transform.decomposeScale(sx, sy);
2018 roundf(std::max(1.0f, sx)),
2048 void OpenGLRenderer::scale(float sx, float sy) { argument
2049 mState.scale(sx, sy);
2052 void OpenGLRenderer::skew(float sx, float sy) { argument
2053 mState.skew(sx, s
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java411 public void scale(float sx, float sy, float sz) { argument
412 Matrix.scaleM(mMatrices, mCurrentMatrixIndex, sx, sy, sz);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java282 public static void native_scale(long nativeCanvas, float sx, float sy) { argument
289 canvasDelegate.getSnapshot().scale(sx, sy);
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java564 * @param sx The amount to scale in X
567 public void scale(float sx, float sy) { argument
568 native_scale(mNativeCanvasWrapper, sx, sy);
574 * @param sx The amount to scale in X
579 public final void scale(float sx, float sy, float px, float py) { argument
581 scale(sx, sy);
610 * @param sx The amount to skew in X
613 public void skew(float sx, float sy) { argument
614 native_skew(mNativeCanvasWrapper, sx, sy);
2020 float sx, floa
2019 native_scale(long canvasHandle, float sx, float sy) argument
2022 native_skew(long canvasHandle, float sx, float sy) argument
[all...]

Completed in 585 milliseconds

12