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

12

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java267 /*package*/ static void native_scale(long nativeCanvas, float sx, float sy) { argument
274 canvasDelegate.getSnapshot().scale(sx, sy);
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java595 * @param sx The amount to scale in X
598 public void scale(float sx, float sy) { argument
599 native_scale(mNativeCanvasWrapper, sx, sy);
605 * @param sx The amount to scale in X
610 public final void scale(float sx, float sy, float px, float py) { argument
612 scale(sx, sy);
641 * @param sx The amount to skew in X
644 public void skew(float sx, float sy) { argument
645 native_skew(mNativeCanvasWrapper, sx, sy);
1987 float sx, floa
1986 native_scale(long canvasHandle, float sx, float sy) argument
1989 native_skew(long canvasHandle, float sx, float sy) argument
[all...]
/frameworks/base/libs/hwui/
H A DDisplayListOp.h442 ScaleOp(float sx, float sy) argument
443 : mSx(sx), mSy(sy) {}
462 SkewOp(float sx, float sy) argument
463 : mSx(sx), mSy(sy) {}
H A DOpenGLRenderer.cpp2639 const float sx = x - shadow->left + textShadow.dx; local
2655 sx, sy, sx + shadow->width, sy + shadow->height);
2742 float sx, sy; local
2743 transform.decomposeScale(sx, sy);
2745 roundf(fmaxf(1.0f, sx)),

Completed in 607 milliseconds

12