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

Unified Diff: src/gpu/GrSWMaskHelper.cpp

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/GrSWMaskHelper.cpp
diff --git a/src/gpu/GrSWMaskHelper.cpp b/src/gpu/GrSWMaskHelper.cpp
index c80a13ccd02aafa76e1184e2a075b0dd27cf6b8d..5a31e9466b939cdc67626c53996fb716bcc7bbdc 100644
--- a/src/gpu/GrSWMaskHelper.cpp
+++ b/src/gpu/GrSWMaskHelper.cpp
@@ -12,6 +12,7 @@
#include "GrGpu.h"
#include "SkData.h"
+#include "SkDistanceFieldGen.h"
#include "SkStrokeRec.h"
// TODO: try to remove this #include
@@ -306,6 +307,17 @@ void GrSWMaskHelper::toTexture(GrTexture *texture) {
}
}
+/**
+ * Convert mask generation results to an SDF
+ */
+void GrSWMaskHelper::toSDF(void* sdf) {
+ SkAutoLockPixels alp(fBM);
+
+ SkGenerateDistanceFieldFromA8Image((unsigned char*)sdf,
+ (const unsigned char*)fBM.getPixels(),
+ fBM.width(), fBM.height(), fBM.rowBytes());
+}
+
////////////////////////////////////////////////////////////////////////////////
/**
* Software rasterizes path to A8 mask (possibly using the context's matrix)

Powered by Google App Engine
This is Rietveld 408576698