Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | List of all members
SkLocalMatrixImageFilter Class Reference

#include <SkLocalMatrixImageFilter.h>

Inheritance diagram for SkLocalMatrixImageFilter:
SkImageFilter_Base SkImageFilter SkFlattenable SkRefCnt SkRefCntBase

Public Member Functions

SkRect computeFastBounds (const SkRect &) const override
 
- Public Member Functions inherited from SkImageFilter_Base
skif::FilterResult filterImage (const skif::Context &context) const
 
sk_sp< SkImagemakeImageWithFilter (sk_sp< skif::Backend > backend, sk_sp< SkImage > src, const SkIRect &subset, const SkIRect &clipBounds, SkIRect *outSubset, SkIPoint *offset) const
 
skif::LayerSpace< SkIRectgetInputBounds (const skif::Mapping &mapping, const skif::DeviceSpace< SkIRect > &desiredOutput, std::optional< skif::ParameterSpace< SkRect > > knownContentBounds) const
 
std::optional< skif::DeviceSpace< SkIRect > > getOutputBounds (const skif::Mapping &mapping, const skif::ParameterSpace< SkRect > &contentBounds) const
 
bool affectsTransparentBlack () const
 
bool usesSource () const
 
MatrixCapability getCTMCapability () const
 
uint32_t uniqueID () const
 
SkFlattenable::Type getFlattenableType () const override
 
- Public Member Functions inherited from SkImageFilter
SkIRect filterBounds (const SkIRect &src, const SkMatrix &ctm, MapDirection, const SkIRect *inputRect=nullptr) const
 
bool isColorFilterNode (SkColorFilter **filterPtr) const
 
bool asColorFilter (SkColorFilter **filterPtr) const
 
bool asAColorFilter (SkColorFilter **filterPtr) const
 
int countInputs () const
 
const SkImageFiltergetInput (int i) const
 
bool canComputeFastBounds () const
 
sk_sp< SkImageFiltermakeWithLocalMatrix (const SkMatrix &matrix) const
 
- Public Member Functions inherited from SkFlattenable
 SkFlattenable ()
 
virtual Factory getFactory () const =0
 
virtual const char * getTypeName () const =0
 
sk_sp< SkDataserialize (const SkSerialProcs *=nullptr) const
 
size_t serialize (void *memory, size_t memory_size, const SkSerialProcs *=nullptr) const
 
- Public Member Functions inherited from SkRefCntBase
 SkRefCntBase ()
 
virtual ~SkRefCntBase ()
 
bool unique () const
 
void ref () const
 
void unref () const
 

Static Public Member Functions

static sk_sp< SkImageFilterMake (const SkMatrix &localMatrix, sk_sp< SkImageFilter > input)
 
- Static Public Member Functions inherited from SkImageFilter_Base
static SkFlattenable::Type GetFlattenableType ()
 
static std::pair< sk_sp< SkImageFilter >, std::optional< SkRect > > Unflatten (SkReadBuffer &buffer)
 
- Static Public Member Functions inherited from SkImageFilter
static sk_sp< SkImageFilterDeserialize (const void *data, size_t size, const SkDeserialProcs *procs=nullptr)
 
- Static Public Member Functions inherited from SkFlattenable
static Factory NameToFactory (const char name[])
 
static const char * FactoryToName (Factory)
 
static void Register (const char name[], Factory)
 
static sk_sp< SkFlattenableDeserialize (Type, const void *data, size_t length, const SkDeserialProcs *procs=nullptr)
 

Protected Member Functions

void flatten (SkWriteBuffer &) const override
 
- Protected Member Functions inherited from SkImageFilter_Base
 SkImageFilter_Base (sk_sp< SkImageFilter > const *inputs, int inputCount, std::optional< bool > usesSrc={})
 
 ~SkImageFilter_Base () override
 
skif::LayerSpace< SkIRectgetChildInputLayerBounds (int index, const skif::Mapping &mapping, const skif::LayerSpace< SkIRect > &desiredOutput, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const
 
std::optional< skif::LayerSpace< SkIRect > > getChildOutputLayerBounds (int index, const skif::Mapping &mapping, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const
 
skif::FilterResult getChildOutput (int index, const skif::Context &ctx) const
 
- Protected Member Functions inherited from SkImageFilter
sk_sp< SkImageFilterrefMe () const
 

Private Member Functions

MatrixCapability onGetCTMCapability () const override
 
skif::FilterResult onFilterImage (const skif::Context &ctx) const override
 
skif::LayerSpace< SkIRectonGetInputLayerBounds (const skif::Mapping &, const skif::LayerSpace< SkIRect > &desiredOutput, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const override
 
std::optional< skif::LayerSpace< SkIRect > > onGetOutputLayerBounds (const skif::Mapping &, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const override
 

Additional Inherited Members

- Public Types inherited from SkImageFilter_Base
using MatrixCapability = skif::MatrixCapability
 
- Public Types inherited from SkImageFilter
enum  MapDirection { kForward_MapDirection , kReverse_MapDirection }
 
- Public Types inherited from SkFlattenable
enum  Type {
  kSkColorFilter_Type , kSkBlender_Type , kSkDrawable_Type , kSkDrawLooper_Type ,
  kSkImageFilter_Type , kSkMaskFilter_Type , kSkPathEffect_Type , kSkShader_Type
}
 
typedef sk_sp< SkFlattenable >(* Factory) (SkReadBuffer &)
 

Detailed Description

Wraps another imagefilter + matrix, such that using this filter will give the same result as using the wrapped filter with the matrix applied to its context.

Definition at line 28 of file SkLocalMatrixImageFilter.h.

Member Function Documentation

◆ computeFastBounds()

SkRect SkLocalMatrixImageFilter::computeFastBounds ( const SkRect bounds) const
overridevirtual

Reimplemented from SkImageFilter.

Definition at line 81 of file SkLocalMatrixImageFilter.cpp.

81 {
82 // In onGet[Input|Output]LayerBounds, there is a Mapping that can be adjusted by the
83 // local matrix, so their layer-space parameters do not need to be modified. Since
84 // computeFastBounds() takes no matrix, it always operates as if it has the identity mapping.
85 //
86 // In order to match the behavior of onGetInputLayerBounds, we map 'bounds' by the inverse of
87 // the local matrix, pass that to the child, and then map the result by the local matrix.
88 // TODO: Implementing computeFastBounds in terms of onGetOutputLayerBounds() trivially removes
89 // this complexity.
90 SkRect localBounds = fInvLocalMatrix.mapRect(bounds);
91 return fLocalMatrix.mapRect(this->getInput(0)->computeFastBounds(localBounds));
92}
const SkImageFilter * getInput(int i) const
SkRect computeFastBounds(const SkRect &) const override
bool mapRect(SkRect *dst, const SkRect &src, SkApplyPerspectiveClip pc=SkApplyPerspectiveClip::kYes) const

◆ flatten()

void SkLocalMatrixImageFilter::flatten ( SkWriteBuffer ) const
overrideprotectedvirtual

Override this if your subclass needs to record data that it will need to recreate itself from its CreateProc (returned by getFactory()).

DEPRECATED public : will move to protected ... use serialize() instead

Reimplemented from SkImageFilter_Base.

Definition at line 45 of file SkLocalMatrixImageFilter.cpp.

45 {
47 buffer.writeMatrix(fLocalMatrix);
48 // fInvLocalMatrix will be reconstructed
49}
void flatten(SkWriteBuffer &) const override
static const uint8_t buffer[]

◆ Make()

sk_sp< SkImageFilter > SkLocalMatrixImageFilter::Make ( const SkMatrix localMatrix,
sk_sp< SkImageFilter input 
)
static

Definition at line 14 of file SkLocalMatrixImageFilter.cpp.

15 {
16 if (!input) {
17 return nullptr;
18 }
19 if (localMatrix.isIdentity()) {
20 return input;
21 }
22
23 MatrixCapability inputCapability = as_IFB(input)->getCTMCapability();
24 if ((inputCapability == MatrixCapability::kTranslate && !localMatrix.isTranslate()) ||
25 (inputCapability == MatrixCapability::kScaleTranslate && !localMatrix.isScaleTranslate())) {
26 // Nothing we can do at this point
27 return nullptr;
28 }
29
30 SkMatrix invLocal;
31 if (!localMatrix.invert(&invLocal)) {
32 return nullptr;
33 }
34
35 return sk_sp<SkImageFilter>(new SkLocalMatrixImageFilter(localMatrix, invLocal, &input));
36}
static SkImageFilter_Base * as_IFB(SkImageFilter *filter)
skif::MatrixCapability MatrixCapability
MatrixCapability getCTMCapability() const
bool invert(SkMatrix *inverse) const
Definition SkMatrix.h:1206
bool isTranslate() const
Definition SkMatrix.h:248
bool isScaleTranslate() const
Definition SkMatrix.h:236
bool isIdentity() const
Definition SkMatrix.h:223

◆ onFilterImage()

skif::FilterResult SkLocalMatrixImageFilter::onFilterImage ( const skif::Context context) const
overrideprivatevirtual

This is the virtual which should be overridden by the derived class to perform image filtering. Subclasses are responsible for recursing to their input filters, although the filterInput() function is provided to handle all necessary details of this.

If the image cannot be created (either because of an error or if the result would be empty because it was clipped out), this should return a filtered Image with a null SkSpecialImage. In these situations, callers that do not affect transparent black can end early, since the "transparent" implicit image would be unchanged. Callers that affect transparent black need to safely handle these null and empty images and return an image filling the context's clip bounds as if its input filtered image were transparent black.

Implements SkImageFilter_Base.

Definition at line 59 of file SkLocalMatrixImageFilter.cpp.

59 {
60 skif::Mapping localMapping = this->localMapping(ctx.mapping());
61 return this->getChildOutput(0, ctx.withNewMapping(localMapping));
62}
skif::FilterResult getChildOutput(int index, const skif::Context &ctx) const

◆ onGetCTMCapability()

MatrixCapability SkLocalMatrixImageFilter::onGetCTMCapability ( ) const
inlineoverrideprivatevirtual

Return the most complex matrix type this filter can support (mapping from its parameter space to a layer space). If this returns anything less than kComplex, the filter only needs to worry about mapping from parameter to layer using a matrix that is constrained in that way (eg, scale+translate).

Reimplemented from SkImageFilter_Base.

Definition at line 47 of file SkLocalMatrixImageFilter.h.

47{ return MatrixCapability::kComplex; }

◆ onGetInputLayerBounds()

skif::LayerSpace< SkIRect > SkLocalMatrixImageFilter::onGetInputLayerBounds ( const skif::Mapping mapping,
const skif::LayerSpace< SkIRect > &  desiredOutput,
std::optional< skif::LayerSpace< SkIRect > >  contentBounds 
) const
overrideprivatevirtual

Calculates the necessary input layer size in order for the final output of the filter to cover the desired output bounds. The provided 'desiredOutput' represents the requested input bounds for this node's parent filter node, i.e. this function answers "what does this node require for input in order to satisfy (as its own output), the input needs of its parent?".

'contentBounds' represents the bounds of the non-transparent content that will form the source image when the filter graph is invoked. If it's not instantiated, implementations should treat the content as extending infinitely. However, since the output is known and bounded, implementations should still be able to determine a finite input bounds under these circumstances.

Unlike the public getInputBounds(), all internal bounds calculations are done in the shared layer space defined by 'mapping'.

Implements SkImageFilter_Base.

Definition at line 64 of file SkLocalMatrixImageFilter.cpp.

67 {
68 // The local matrix changes 'mapping' by adjusting the parameter space of the image filter, but
69 // both 'desiredOutput' and 'contentBounds' have already been transformed to the consistent
70 // layer space. They remain unchanged with the new mapping.
71 return this->getChildInputLayerBounds(0, this->localMapping(mapping),
72 desiredOutput, contentBounds);
73}
skif::LayerSpace< SkIRect > getChildInputLayerBounds(int index, const skif::Mapping &mapping, const skif::LayerSpace< SkIRect > &desiredOutput, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const

◆ onGetOutputLayerBounds()

std::optional< skif::LayerSpace< SkIRect > > SkLocalMatrixImageFilter::onGetOutputLayerBounds ( const skif::Mapping mapping,
std::optional< skif::LayerSpace< SkIRect > >  contentBounds 
) const
overrideprivatevirtual

Calculates the output bounds that this filter node would touch when processing an input sized to 'contentBounds'. This function is responsible for recursing to its child image filters and accounting for what they output. It is up to the filter to determine how to aggregate the outputs of its children.

'contentBounds' represents the bounds of the non-transparent content that will form the source image when the filter graph is invoked. If it's not instantiated, implementations should treat the content as extending infinitely. However, since the output is known and bounded, implementations should still be able to determine a finite input bounds under these circumstances.

If the non-transparent output extends infinitely, subclasses should return an uninstantiated optional. Implementations must also be able to handle when their children return such unbounded "outputs" and react accordingly.

Unlike the public getOutputBounds(), all internal bounds calculations are done in the shared layer space defined by 'mapping'.

Implements SkImageFilter_Base.

Definition at line 75 of file SkLocalMatrixImageFilter.cpp.

77 {
78 return this->getChildOutputLayerBounds(0, this->localMapping(mapping), contentBounds);
79}
std::optional< skif::LayerSpace< SkIRect > > getChildOutputLayerBounds(int index, const skif::Mapping &mapping, std::optional< skif::LayerSpace< SkIRect > > contentBounds) const

The documentation for this class was generated from the following files: