Searched defs:skew (Results 1 - 6 of 6) sorted by path

/frameworks/base/core/java/android/view/
H A DGLES20Canvas.java548 public void skew(float sx, float sy) { method in class:GLES20Canvas
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java310 * calls to translate,scale,rotate,skew,concat or clipRect,clipPath
321 * stack. Subsequent calls to translate,scale,rotate,skew,concat or
337 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
369 * scale, rotate, skew, concat or clipRect, clipPath all operate on this
473 * Preconcat the current matrix with the specified skew.
475 * @param sx The amount to skew in X
476 * @param sy The amount to skew in Y
478 public native void skew(float sx, float sy); method in class:Canvas
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp995 renderer.skew(sx, sy);
1532 void DisplayListRenderer::skew(float sx, float sy) { function in class:android::uirenderer::DisplayListRenderer
1535 OpenGLRenderer::skew(sx, sy);
H A DMatrix.h103 void skew(float sx, float sy) { function in class:android::uirenderer::Matrix4
H A DOpenGLRenderer.cpp1179 void OpenGLRenderer::skew(float sx, float sy) { function in class:android::uirenderer::OpenGLRenderer
1180 mSnapshot->transform->skew(sx, sy);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java171 /*package*/ static void skew(Canvas thisCanvas, float kx, float ky) { method in class:Canvas_Delegate
183 // get the AffineTransform for the given skew.

Completed in 684 milliseconds