Searched refs:concatMatrix (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DViewGroup_Delegate.java113 boolean concatMatrix = false;
120 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0;
123 concatMatrix |= childHasIdentityMatrix;
138 if (concatMatrix) {
/frameworks/base/libs/hwui/
H A DCanvasState.h116 void concatMatrix(const SkMatrix& matrix);
117 void concatMatrix(const Matrix4& matrix); // internal only convenience method
H A DCanvasState.cpp193 void CanvasState::concatMatrix(const SkMatrix& matrix) { function in class:android::uirenderer::CanvasState
198 void CanvasState::concatMatrix(const Matrix4& matrix) { function in class:android::uirenderer::CanvasState
H A DOpenGLRenderer.h301 void concatMatrix(const SkMatrix& matrix) { mState.concatMatrix(matrix); } function in class:android::uirenderer::OpenGLRenderer
309 void concatMatrix(const Matrix4& matrix); // internal only convenience method
H A DFrameBuilder.cpp221 mCanvasState.concatMatrix(*properties.getStaticMatrix());
223 mCanvasState.concatMatrix(*properties.getAnimationMatrix());
229 mCanvasState.concatMatrix(*properties.getTransformMatrix());
493 mCanvasState.concatMatrix(childOp->transformFromCompositingAncestor);
543 mCanvasState.concatMatrix(op.localMatrix);
H A DRenderNode.cpp588 renderer.concatMatrix(*properties().getStaticMatrix());
590 renderer.concatMatrix(*properties().getAnimationMatrix());
596 renderer.concatMatrix(*properties().getTransformMatrix());
968 renderer.concatMatrix(childOp->localMatrix);
1012 renderer.concatMatrix(childOp->transformFromCompositingAncestor);
H A DRecordingCanvas.h123 virtual void concat(const SkMatrix& matrix) override { mState.concatMatrix(matrix); }
H A DOpenGLRenderer.cpp2058 mState.concatMatrix(matrix);
2063 mState.concatMatrix(matrix);
2066 void OpenGLRenderer::concatMatrix(const Matrix4& matrix) { function in class:android::uirenderer::OpenGLRenderer
2067 mState.concatMatrix(matrix);
2245 concatMatrix(*transform);
H A DDisplayListCanvas.cpp176 mState.concatMatrix(matrix);
H A DDisplayListOp.h499 renderer.concatMatrix(mMatrix);
/frameworks/base/core/java/android/view/
H A DView.java16767 boolean concatMatrix = false;
16772 concatMatrix = a.willChangeTransformationMatrix();
16773 if (concatMatrix) {
16790 concatMatrix = (transformType & Transformation.TYPE_MATRIX) != 0;
16795 concatMatrix |= !childHasIdentityMatrix;
16801 if (!concatMatrix &&
16890 if (concatMatrix) {

Completed in 144 milliseconds