Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2618)

Unified Diff: src/gpu/effects/GrDistanceFieldTextureEffect.h

Issue 589103004: Add GrAASmallPathRenderer. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rename SmallPathRenderer to DistanceFieldPathRenderer. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/gpu/effects/GrDistanceFieldTextureEffect.h
diff --git a/src/gpu/effects/GrDistanceFieldTextureEffect.h b/src/gpu/effects/GrDistanceFieldTextureEffect.h
index b8d774d6101dde312c2a80e1b9f0e9b8ab1b321a..220a22aa8cb28d322b7893899728f6a0fdf31b9b 100644
--- a/src/gpu/effects/GrDistanceFieldTextureEffect.h
+++ b/src/gpu/effects/GrDistanceFieldTextureEffect.h
@@ -12,6 +12,7 @@
#include "GrGeometryProcessor.h"
class GrGLDistanceFieldTextureEffect;
+class GrGLDistanceFieldNoGammaTextureEffect;
class GrGLDistanceFieldLCDTextureEffect;
enum GrDistanceFieldEffectFlags {
@@ -92,6 +93,48 @@ private:
typedef GrFragmentProcessor INHERITED;
};
+
+/**
+* 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 (GrTextureParams). The input
+* coords are a custom attribute. No gamma correct blending is applied.
+*/
+class GrDistanceFieldNoGammaTextureEffect : public GrGeometryProcessor {
+public:
+ static GrGeometryProcessor* Create(GrTexture* tex, const GrTextureParams& params,
robertphillips 2014/09/26 14:00:31 line this up ?
jvanverth1 2014/10/03 17:28:24 Done.
+ uint32_t flags) {
+ return SkNEW_ARGS(GrDistanceFieldNoGammaTextureEffect, (tex, params, flags));
+ }
+
+ virtual ~GrDistanceFieldNoGammaTextureEffect() {}
+
+ static const char* Name() { return "DistanceFieldTexture"; }
+
+ virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const SK_OVERRIDE;
+
+ const GrShaderVar& inTextureCoords() const { return fInTextureCoords; }
+ uint32_t getFlags() const { return fFlags; }
+
robertphillips 2014/09/26 14:00:31 Where is this used ?
jvanverth1 2014/10/03 17:28:24 In GrTBackendProcessorFactory.
+ typedef GrGLDistanceFieldNoGammaTextureEffect GLProcessor;
+
+ virtual const GrBackendGeometryProcessorFactory& getFactory() const SK_OVERRIDE;
+
+private:
+ GrDistanceFieldNoGammaTextureEffect(GrTexture* texture, const GrTextureParams& params,
robertphillips 2014/09/26 14:00:31 line this up ?
jvanverth1 2014/10/03 17:28:24 Done.
+ uint32_t flags);
+
+ virtual bool onIsEqual(const GrProcessor& other) const SK_OVERRIDE;
+
+ GrTextureAccess fTextureAccess;
+ uint32_t fFlags;
+ const GrShaderVar& fInTextureCoords;
+
+ GR_DECLARE_GEOMETRY_PROCESSOR_TEST;
+
robertphillips 2014/09/26 14:00:31 GrGeometryProcessor ?
jvanverth1 2014/10/03 17:28:24 Done.
+ typedef GrFragmentProcessor INHERITED;
+};
+
/**
* The output color of this effect is a modulation of the input color and samples from a
* distance field texture (using a smoothed step function near 0.5), adjusted for LCD displays.

Powered by Google App Engine
This is Rietveld 408576698