aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--gm/bitmapshader.cpp38
-rw-r--r--include/core/SkPaint.h7
2 files changed, 24 insertions, 21 deletions
diff --git a/gm/bitmapshader.cpp b/gm/bitmapshader.cpp
index 4649b7e95f..fb563070d1 100644
--- a/gm/bitmapshader.cpp
+++ b/gm/bitmapshader.cpp
@@ -35,6 +35,11 @@ static void draw_mask(SkBitmap* bm) {
canvas.drawCircle(10, 10, 10, circlePaint);
}
+static void adopt_shader(SkPaint* paint, SkShader* shader) {
+ paint->setShader(shader);
+ SkSafeUnref(shader);
+}
+
class BitmapShaderGM : public GM {
public:
@@ -50,40 +55,33 @@ protected:
}
virtual SkISize onISize() {
- return make_isize(75, 100);
+ return SkISize::Make(75, 100);
}
virtual void onDraw(SkCanvas* canvas) {
- SkShader* shader = SkShader::CreateBitmapShader(fBitmap,
- SkShader::kClamp_TileMode,
- SkShader::kClamp_TileMode);
SkPaint paint;
- paint.setShader(shader);
- // release the shader ref as the paint now holds a reference
- shader->unref();
+
+ adopt_shader(&paint, SkShader::CreateBitmapShader(fBitmap, SkShader::kClamp_TileMode,
+ SkShader::kClamp_TileMode));
// draw the shader with a bitmap mask
canvas->drawBitmap(fMask, 0, 0, &paint);
canvas->drawBitmap(fMask, 30, 0, &paint);
- canvas->translate(0, 25);
+ canvas->translate(0, 25);
- // draw the shader with standard geometry
- canvas->drawCircle(10, 10, 10, paint);
- canvas->drawCircle(40, 10, 10, paint); // no blue circle expected
+ canvas->drawCircle(10, 10, 10, paint);
+ canvas->drawCircle(40, 10, 10, paint); // no blue circle expected
- canvas->translate(0, 25);
+ canvas->translate(0, 25);
- shader = SkShader::CreateBitmapShader(fMask,
- SkShader::kRepeat_TileMode,
- SkShader::kRepeat_TileMode);
- paint.setShader(shader);
+ adopt_shader(&paint, SkShader::CreateBitmapShader(fMask, SkShader::kRepeat_TileMode,
+ SkShader::kRepeat_TileMode));
paint.setColor(SK_ColorRED);
- shader->unref();
- // draw the mask using the shader and a color
- canvas->drawRect(SkRect::MakeXYWH(0, 0, 20, 20), paint);
- canvas->drawRect(SkRect::MakeXYWH(30, 0, 20, 20), paint);
+ // draw the mask using the shader and a color
+ canvas->drawRect(SkRect::MakeXYWH(0, 0, 20, 20), paint);
+ canvas->drawRect(SkRect::MakeXYWH(30, 0, 20, 20), paint);
}
private:
diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h
index d1853c613c..e86d01195c 100644
--- a/include/core/SkPaint.h
+++ b/include/core/SkPaint.h
@@ -514,7 +514,12 @@ public:
* once (e.g. bitmap tiling or gradient) and then change its transparency
* w/o having to modify the original shader... only the paint's alpha needs
* to be modified.
- * <p />
+ *
+ * There is an exception to this only-respect-paint's-alpha rule: If the shader only generates
+ * alpha (e.g. SkShader::CreateBitmapShader(bitmap, ...) where bitmap's colortype is kAlpha_8)
+ * then the shader will use the paint's entire color to "colorize" its output (modulating the
+ * bitmap's alpha with the paint's color+alpha).
+ *
* Pass NULL to clear any previous shader.
* As a convenience, the parameter passed is also returned.
* If a previous shader exists, its reference count is decremented.