2014-08-09 18:08:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
#include "SkPaint.h"
|
2017-05-16 14:39:06 +00:00
|
|
|
#include "SkPath.h"
|
2014-08-09 18:08:05 +00:00
|
|
|
#include "SkPictureRecorder.h"
|
|
|
|
|
2016-03-18 14:25:55 +00:00
|
|
|
static sk_sp<SkPicture> make_picture() {
|
2014-08-09 18:08:05 +00:00
|
|
|
SkPictureRecorder rec;
|
|
|
|
SkCanvas* canvas = rec.beginRecording(100, 100);
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
SkPath path;
|
|
|
|
|
|
|
|
paint.setColor(0x800000FF);
|
|
|
|
canvas->drawRect(SkRect::MakeWH(100, 100), paint);
|
|
|
|
|
|
|
|
paint.setColor(0x80FF0000);
|
|
|
|
path.moveTo(0, 0); path.lineTo(100, 0); path.lineTo(100, 100);
|
|
|
|
canvas->drawPath(path, paint);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2014-08-09 18:08:05 +00:00
|
|
|
paint.setColor(0x8000FF00);
|
|
|
|
path.reset(); path.moveTo(0, 0); path.lineTo(100, 0); path.lineTo(0, 100);
|
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
|
|
|
|
paint.setColor(0x80FFFFFF);
|
2016-10-06 00:33:02 +00:00
|
|
|
paint.setBlendMode(SkBlendMode::kPlus);
|
2014-08-09 18:08:05 +00:00
|
|
|
canvas->drawRect(SkRect::MakeXYWH(25, 25, 50, 50), paint);
|
|
|
|
|
2016-03-18 14:25:55 +00:00
|
|
|
return rec.finishRecordingAsPicture();
|
2014-08-09 18:08:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Exercise the optional arguments to drawPicture
|
|
|
|
//
|
|
|
|
class PictureGM : public skiagm::GM {
|
|
|
|
public:
|
2015-02-25 17:04:04 +00:00
|
|
|
PictureGM()
|
2015-08-27 14:41:13 +00:00
|
|
|
: fPicture(nullptr)
|
2015-02-25 17:04:04 +00:00
|
|
|
{}
|
2014-08-09 18:08:05 +00:00
|
|
|
|
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
void onOnceBeforeDraw() override {
|
2016-03-18 14:25:55 +00:00
|
|
|
fPicture = make_picture();
|
2015-02-25 17:04:04 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2014-08-09 18:08:05 +00:00
|
|
|
return SkString("pictures");
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override {
|
2014-08-09 18:08:05 +00:00
|
|
|
return SkISize::Make(450, 120);
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2014-08-09 18:08:05 +00:00
|
|
|
canvas->translate(10, 10);
|
|
|
|
|
|
|
|
SkMatrix matrix;
|
|
|
|
SkPaint paint;
|
|
|
|
|
|
|
|
canvas->drawPicture(fPicture);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2014-08-09 18:08:05 +00:00
|
|
|
matrix.setTranslate(110, 0);
|
2015-08-27 14:41:13 +00:00
|
|
|
canvas->drawPicture(fPicture, &matrix, nullptr);
|
2016-03-29 16:03:52 +00:00
|
|
|
|
2014-08-09 18:08:05 +00:00
|
|
|
matrix.postTranslate(110, 0);
|
|
|
|
canvas->drawPicture(fPicture, &matrix, &paint);
|
|
|
|
|
|
|
|
paint.setAlpha(0x80);
|
|
|
|
matrix.postTranslate(110, 0);
|
|
|
|
canvas->drawPicture(fPicture, &matrix, &paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-03-18 14:25:55 +00:00
|
|
|
sk_sp<SkPicture> fPicture;
|
2014-08-09 18:08:05 +00:00
|
|
|
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
|
|
};
|
|
|
|
|
2015-08-26 20:07:48 +00:00
|
|
|
DEF_GM(return new PictureGM;)
|