Searched refs:localMatrix (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/libs/hwui/
H A DRecordedOp.h153 #define BASE_PARAMS const Rect& unmappedBounds, const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint
154 #define BASE_PARAMS_PAINTLESS const Rect& unmappedBounds, const Matrix4& localMatrix, const ClipBase* localClip
155 #define SUPER(Type) RecordedOp(RecordedOpId::Type, unmappedBounds, localMatrix, localClip, paint)
156 #define SUPER_PAINTLESS(Type) RecordedOp(RecordedOpId::Type, unmappedBounds, localMatrix, localClip, nullptr)
166 const Matrix4 localMatrix; member in struct:android::uirenderer::RecordedOp
177 , localMatrix(localMatrix)
249 CirclePropsOp(const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint, argument
251 : RecordedOp(RecordedOpId::CirclePropsOp, Rect(), localMatrix, localClip, paint)
273 FunctorOp(const Matrix4& localMatrix, cons argument
333 RoundRectPropsOp(const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint, float* left, float* top, float* right, float* bottom, float *rx, float *ry) argument
402 TextOnPathOp(const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint, const glyph_t* glyphs, int glyphCount, const SkPath* path, float hOffset, float vOffset) argument
[all...]
H A DOpDumper.cpp33 op.localMatrix.mapRect(localBounds);
H A DFrameBuilder.cpp444 Matrix4 shadowMatrixXY(casterNodeOp.localMatrix);
445 Matrix4 shadowMatrixZ(casterNodeOp.localMatrix);
543 mCanvasState.concatMatrix(op.localMatrix);
638 op.localMatrix,
655 op.localMatrix,
730 op.localMatrix,
793 Matrix4 combinedMatrix(op.localMatrix);
842 contentTransform.multiply(op.localMatrix);
896 contentTransform.multiply(beginLayerOp.localMatrix);
918 Matrix4 localMatrix(beginLayerO
[all...]
H A DBakedOpState.h151 : computedState(allocator, snapshot, recordedOp.localMatrix, recordedOp.localClip)
H A DSkiaShader.cpp69 * @param localMatrix Local matrix, as returned by SkShader::getLocalMatrix().
73 const SkMatrix& localMatrix, const mat4& modelViewMatrix) {
76 shaderMatrix.loadInverse(localMatrix);
72 computeScreenSpaceMatrix(mat4& screenSpace, const SkMatrix& unitMatrix, const SkMatrix& localMatrix, const mat4& modelViewMatrix) argument
H A DBakedOpState.cpp35 // resolvedMatrix = parentMatrix * localMatrix
36 transform.loadMultiply(*snapshot.transform, recordedOp.localMatrix);
H A DRenderNode.cpp523 info.damageAccumulator->pushTransform(&op->localMatrix);
526 info.damageAccumulator->pushTransform(&op->localMatrix);
725 localTransformFromProjectionSurface.multiply(opState->localMatrix);
954 caster->issueDrawShadowOperation(casterOp->localMatrix, handler);
968 renderer.concatMatrix(childOp->localMatrix);
H A DDisplayListOp.h1419 , localMatrix(transformFromParent)
1472 const mat4 localMatrix; member in class:android::uirenderer::DrawRenderNodeOp
H A DOpenGLRenderer.cpp854 LayerShader(Layer* layer, const SkMatrix* localMatrix) argument
855 : INHERITED(localMatrix)
H A DBakedOpDispatcher.cpp800 RectOp rectOp(op.unmappedBounds, op.localMatrix, op.localClip, &paint);
/frameworks/base/libs/hwui/tests/unit/
H A DSkiaCanvasTests.cpp60 EXPECT_EQ(directOp->localMatrix, pictureOp->localMatrix);
H A DRecordingCanvasTests.cpp160 EXPECT_TRUE(op.localMatrix.isIdentity());
277 EXPECT_MATRIX_APPROX_EQ(expectedMatrix, op.localMatrix);
287 EXPECT_MATRIX_APPROX_EQ(expectedMatrix, op.localMatrix);
305 ASSERT_TRUE(op.localMatrix.isIdentity()) << "Op must not apply matrix at record time.";
323 EXPECT_TRUE(op.localMatrix.isIdentity());
330 EXPECT_MATRIX_APPROX_EQ(expectedMatrix, op.localMatrix);
371 EXPECT_TRUE(op.localMatrix.isIdentity());
377 EXPECT_TRUE(op.localMatrix.isIdentity());
427 EXPECT_MATRIX_APPROX_EQ(expectedMatrix, op.localMatrix);
452 EXPECT_MATRIX_APPROX_EQ(Matrix4::identity(), op.localMatrix)
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapShader_Delegate.java123 AffineTransform localMatrix = getLocalMatrix();
125 localMatrix = localMatrix.createInverse();
129 localMatrix = new AffineTransform();
137 return new BitmapShaderContext(canvasMatrix, localMatrix, colorModel);
148 AffineTransform localMatrix,
151 mLocalMatrix = localMatrix;
146 BitmapShaderContext( AffineTransform canvasMatrix, AffineTransform localMatrix, ColorModel colorModel) argument
H A DLinearGradient_Delegate.java139 java.awt.geom.AffineTransform localMatrix = getLocalMatrix();
141 localMatrix = localMatrix.createInverse();
145 localMatrix = new java.awt.geom.AffineTransform();
148 return new LinearGradientPaintContext(canvasMatrix, localMatrix, colorModel);
159 java.awt.geom.AffineTransform localMatrix,
162 mLocalMatrix = localMatrix;
157 LinearGradientPaintContext( java.awt.geom.AffineTransform canvasMatrix, java.awt.geom.AffineTransform localMatrix, java.awt.image.ColorModel colorModel) argument
H A DRadialGradient_Delegate.java127 java.awt.geom.AffineTransform localMatrix = getLocalMatrix();
129 localMatrix = localMatrix.createInverse();
133 localMatrix = new java.awt.geom.AffineTransform();
136 return new RadialGradientPaintContext(canvasMatrix, localMatrix, colorModel);
147 java.awt.geom.AffineTransform localMatrix,
150 mLocalMatrix = localMatrix;
145 RadialGradientPaintContext( java.awt.geom.AffineTransform canvasMatrix, java.awt.geom.AffineTransform localMatrix, java.awt.image.ColorModel colorModel) argument
H A DSweepGradient_Delegate.java117 java.awt.geom.AffineTransform localMatrix = getLocalMatrix();
119 localMatrix = localMatrix.createInverse();
123 localMatrix = new java.awt.geom.AffineTransform();
126 return new SweepGradientPaintContext(canvasMatrix, localMatrix, colorModel);
137 java.awt.geom.AffineTransform localMatrix,
140 mLocalMatrix = localMatrix;
135 SweepGradientPaintContext( java.awt.geom.AffineTransform canvasMatrix, java.awt.geom.AffineTransform localMatrix, java.awt.image.ColorModel colorModel) argument

Completed in 7242 milliseconds