Flutter Engine
The Flutter Engine
Classes | Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
GrDistanceFieldA8TextGeoProc Class Reference

#include <GrDistanceFieldGeoProc.h>

Inheritance diagram for GrDistanceFieldA8TextGeoProc:
GrGeometryProcessor GrProcessor

Classes

class  Impl
 

Public Member Functions

 ~GrDistanceFieldA8TextGeoProc () override
 
const char * name () const override
 
void addNewViews (const GrSurfaceProxyView *views, int numViews, GrSamplerState)
 
void addToKey (const GrShaderCaps &, skgpu::KeyBuilder *) const override
 
std::unique_ptr< ProgramImplmakeProgramImpl (const GrShaderCaps &) const override
 
- Public Member Functions inherited from GrGeometryProcessor
 GrGeometryProcessor (ClassID)
 
int numTextureSamplers () const
 
const TextureSamplertextureSampler (int index) const
 
int numVertexAttributes () const
 
const AttributeSetvertexAttributes () const
 
int numInstanceAttributes () const
 
const AttributeSetinstanceAttributes () const
 
bool hasVertexAttributes () const
 
bool hasInstanceAttributes () const
 
size_t vertexStride () const
 
size_t instanceStride () const
 
virtual void addToKey (const GrShaderCaps &, skgpu::KeyBuilder *) const =0
 
void getAttributeKey (skgpu::KeyBuilder *b) const
 
virtual std::unique_ptr< ProgramImplmakeProgramImpl (const GrShaderCaps &) const =0
 
- Public Member Functions inherited from GrProcessor
virtual ~GrProcessor ()=default
 
virtual const char * name () const =0
 
void * operator new (size_t size)
 
void * operator new (size_t object_size, size_t footer_size)
 
void operator delete (void *target)
 
void * operator new (size_t size, void *placement)
 
void operator delete (void *target, void *placement)
 
template<typename T >
const Tcast () const
 
ClassID classID () const
 

Static Public Member Functions

static GrGeometryProcessorMake (SkArenaAlloc *arena, const GrShaderCaps &caps, const GrSurfaceProxyView *views, int numActiveViews, GrSamplerState params, uint32_t flags, const SkMatrix &localMatrixIfUsesLocalCoords)
 
- Static Public Member Functions inherited from GrGeometryProcessor
static uint32_t ComputeCoordTransformsKey (const GrFragmentProcessor &fp)
 

Static Public Attributes

static constexpr int kMaxTextures = 4
 
- Static Public Attributes inherited from GrGeometryProcessor
static constexpr int kCoordTransformKeyBits = 4
 

Additional Inherited Members

- Public Types inherited from GrProcessor
enum  ClassID {
  kNull_ClassID , kAttributeTestProcessor_ClassID , kBigKeyProcessor_ClassID , kBlendFragmentProcessor_ClassID ,
  kBlockInputFragmentProcessor_ClassID , kButtCapStrokedCircleGeometryProcessor_ClassID , kCircleGeometryProcessor_ClassID , kCircularRRectEffect_ClassID ,
  kClockwiseTestProcessor_ClassID , kColorTableEffect_ClassID , kCoverageSetOpXP_ClassID , kCustomXP_ClassID ,
  kDashingCircleEffect_ClassID , kDashingLineEffect_ClassID , kDefaultGeoProc_ClassID , kDeviceSpace_ClassID ,
  kDIEllipseGeometryProcessor_ClassID , kDisableColorXP_ClassID , kDrawAtlasPathShader_ClassID , kEllipseGeometryProcessor_ClassID ,
  kEllipticalRRectEffect_ClassID , kFwidthSquircleTestProcessor_ClassID , kGP_ClassID , kGrBicubicEffect_ClassID ,
  kGrBitmapTextGeoProc_ClassID , kGrColorSpaceXformEffect_ClassID , kGrConicEffect_ClassID , kGrConvexPolyEffect_ClassID ,
  kGrDiffuseLightingEffect_ClassID , kGrDisplacementMapEffect_ClassID , kGrDistanceFieldA8TextGeoProc_ClassID , kGrDistanceFieldLCDTextGeoProc_ClassID ,
  kGrDistanceFieldPathGeoProc_ClassID , kGrFillRRectOp_Processor_ClassID , kGrGaussianConvolutionFragmentProcessor_ClassID , kGrMatrixConvolutionEffect_ClassID ,
  kGrMatrixEffect_ClassID , kGrMeshTestProcessor_ClassID , kGrMorphologyEffect_ClassID , kGrPerlinNoise2Effect_ClassID ,
  kGrPipelineDynamicStateTestProcessor_ClassID , kGrQuadEffect_ClassID , kGrRRectShadowGeoProc_ClassID , kGrSkSLFP_ClassID ,
  kGrSpecularLightingEffect_ClassID , kGrTextureEffect_ClassID , kGrUnrolledBinaryGradientColorizer_ClassID , kGrYUVtoRGBEffect_ClassID ,
  kHighPrecisionFragmentProcessor_ClassID , kLatticeGP_ClassID , kPDLCDXferProcessor_ClassID , kPorterDuffXferProcessor_ClassID ,
  kPremulFragmentProcessor_ClassID , kQuadEdgeEffect_ClassID , kQuadPerEdgeAAGeometryProcessor_ClassID , kSeriesFragmentProcessor_ClassID ,
  kShaderPDXferProcessor_ClassID , kSurfaceColorProcessor_ClassID , kSwizzleFragmentProcessor_ClassID , kTessellate_BoundingBoxShader_ClassID ,
  kTessellate_GrModulateAtlasCoverageEffect_ClassID , kTessellate_GrStrokeTessellationShader_ClassID , kTessellate_HullShader_ClassID , kTessellate_MiddleOutShader_ClassID ,
  kTessellate_SimpleTriangleShader_ClassID , kTessellationTestTriShader_ClassID , kTestFP_ClassID , kTestRectOp_ClassID ,
  kVertexColorSpaceBenchGP_ClassID , kVerticesGP_ClassID
}
 
- Protected Member Functions inherited from GrGeometryProcessor
void setVertexAttributes (const Attribute *attrs, int attrCount, size_t stride)
 
void setInstanceAttributes (const Attribute *attrs, int attrCount, size_t stride)
 
void setVertexAttributesWithImplicitOffsets (const Attribute *attrs, int attrCount)
 
void setInstanceAttributesWithImplicitOffsets (const Attribute *attrs, int attrCount)
 
void setTextureSamplerCnt (int cnt)
 
- Protected Member Functions inherited from GrProcessor
 GrProcessor (ClassID classID)
 
 GrProcessor (const GrProcessor &)=delete
 
GrProcessoroperator= (const GrProcessor &)=delete
 
- Static Protected Member Functions inherited from GrGeometryProcessor
static Attribute MakeColorAttribute (const char *name, bool wideColor)
 
- Protected Attributes inherited from GrProcessor
const ClassID fClassID
 

Detailed Description

The output color of this effect is a modulation of the input color and a sample from a distance field texture (using a smoothed step function near 0.5). It allows explicit specification of the filtering and wrap modes (GrSamplerState). The input coords are a custom attribute. Gamma correction is handled via a texture LUT.

Definition at line 72 of file GrDistanceFieldGeoProc.h.

Constructor & Destructor Documentation

◆ ~GrDistanceFieldA8TextGeoProc()

GrDistanceFieldA8TextGeoProc::~GrDistanceFieldA8TextGeoProc ( )
inlineoverride

Definition at line 106 of file GrDistanceFieldGeoProc.h.

106{}

Member Function Documentation

◆ addNewViews()

void GrDistanceFieldA8TextGeoProc::addNewViews ( const GrSurfaceProxyView views,
int  numViews,
GrSamplerState  params 
)

Definition at line 259 of file GrDistanceFieldGeoProc.cpp.

261 {
262 SkASSERT(numViews <= kMaxTextures);
263 // Just to make sure we don't try to add too many proxies
264 numViews = std::min(numViews, kMaxTextures);
265
266 if (!fTextureSamplers[0].isInitialized()) {
267 fAtlasDimensions = views[0].proxy()->dimensions();
268 }
269
270 for (int i = 0; i < numViews; ++i) {
271 const GrSurfaceProxy* proxy = views[i].proxy();
272 SkASSERT(proxy);
273 SkASSERT(proxy->dimensions() == fAtlasDimensions);
274 if (!fTextureSamplers[i].isInitialized()) {
275 fTextureSamplers[i].reset(params, proxy->backendFormat(), views[i].swizzle());
276 }
277 }
278 this->setTextureSamplerCnt(numViews);
279}
#define SkASSERT(cond)
Definition: SkAssert.h:116
void reset(GrSamplerState, const GrBackendFormat &, const skgpu::Swizzle &)
void setTextureSamplerCnt(int cnt)
GrSurfaceProxy * proxy() const
const GrBackendFormat & backendFormat() const
SkISize dimensions() const
const EmbeddedViewParams * params
static float min(float r, float g, float b)
Definition: hsl.cpp:48

◆ addToKey()

void GrDistanceFieldA8TextGeoProc::addToKey ( const GrShaderCaps ,
skgpu::KeyBuilder  
) const
overridevirtual

Adds a key on the skgpu::KeyBuilder that reflects any variety in the code that the geometry processor subclass can emit.

Implements GrGeometryProcessor.

Definition at line 281 of file GrDistanceFieldGeoProc.cpp.

282 {
283 uint32_t key = 0;
284 key |= fFlags;
285 key |= ProgramImpl::ComputeMatrixKey(caps, fLocalMatrix) << 16;
286 b->add32(key);
287 b->add32(this->numTextureSamplers());
288}
static uint32_t ComputeMatrixKey(const GrShaderCaps &caps, const SkMatrix &mat)
static bool b

◆ Make()

static GrGeometryProcessor * GrDistanceFieldA8TextGeoProc::Make ( SkArenaAlloc arena,
const GrShaderCaps caps,
const GrSurfaceProxyView views,
int  numActiveViews,
GrSamplerState  params,
uint32_t  flags,
const SkMatrix localMatrixIfUsesLocalCoords 
)
inlinestatic

The local matrix should be identity if local coords are not required by the GrPipeline.

Definition at line 92 of file GrDistanceFieldGeoProc.h.

98 {
99 return arena->make([&](void* ptr) {
100 return new (ptr) GrDistanceFieldA8TextGeoProc(
101 caps, views, numActiveViews, params, flags, localMatrixIfUsesLocalCoords);
102 });
103 }
auto make(Ctor &&ctor) -> decltype(ctor(nullptr))
Definition: SkArenaAlloc.h:120
FlutterSemanticsFlag flags

◆ makeProgramImpl()

std::unique_ptr< GrGeometryProcessor::ProgramImpl > GrDistanceFieldA8TextGeoProc::makeProgramImpl ( const GrShaderCaps ) const
overridevirtual

Returns a new instance of the appropriate implementation class for the given GrGeometryProcessor.

Implements GrGeometryProcessor.

Definition at line 290 of file GrDistanceFieldGeoProc.cpp.

291 {
292 return std::make_unique<Impl>();
293}

◆ name()

const char * GrDistanceFieldA8TextGeoProc::name ( ) const
inlineoverridevirtual

Human-meaningful string to identify this processor; may be embedded in generated shader code and must be a legal SkSL identifier prefix.

Implements GrProcessor.

Definition at line 108 of file GrDistanceFieldGeoProc.h.

108{ return "DistanceFieldA8Text"; }

Member Data Documentation

◆ kMaxTextures

constexpr int GrDistanceFieldA8TextGeoProc::kMaxTextures = 4
inlinestaticconstexpr

Definition at line 74 of file GrDistanceFieldGeoProc.h.


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