2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2014-01-13 14:53:55 +00:00
|
|
|
|
2014-06-18 21:32:48 +00:00
|
|
|
#include "gm.h"
|
|
|
|
|
|
|
|
#include "Resources.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SampleCode.h"
|
2014-06-18 21:32:48 +00:00
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkColorFilter.h"
|
|
|
|
#include "SkColorPriv.h"
|
2013-12-18 15:08:35 +00:00
|
|
|
#include "SkData.h"
|
2015-01-08 02:04:45 +00:00
|
|
|
#include "SkImageGenerator.h"
|
2009-12-04 21:32:27 +00:00
|
|
|
#include "SkDumpCanvas.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkGradientShader.h"
|
|
|
|
#include "SkGraphics.h"
|
|
|
|
#include "SkImageDecoder.h"
|
2013-12-18 15:08:35 +00:00
|
|
|
#include "SkOSFile.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkPicture.h"
|
2014-04-18 18:04:41 +00:00
|
|
|
#include "SkPictureRecorder.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkRandom.h"
|
|
|
|
#include "SkRegion.h"
|
|
|
|
#include "SkShader.h"
|
2014-06-18 21:32:48 +00:00
|
|
|
#include "SkStream.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkTime.h"
|
|
|
|
#include "SkTypeface.h"
|
2014-06-18 21:32:48 +00:00
|
|
|
#include "SkUtils.h"
|
|
|
|
#include "SkView.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkXMLParser.h"
|
2014-06-18 21:32:48 +00:00
|
|
|
#include "SkXfermode.h"
|
2010-04-22 16:07:49 +00:00
|
|
|
|
2013-12-18 15:08:35 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2009-11-10 15:54:55 +00:00
|
|
|
|
|
|
|
static SkBitmap load_bitmap() {
|
|
|
|
SkBitmap bm;
|
2014-07-01 19:35:49 +00:00
|
|
|
SkString pngFilename = GetResourcePath("mandrill_512.png");
|
|
|
|
SkAutoDataUnref data(SkData::NewFromFileName(pngFilename.c_str()));
|
2013-12-18 15:08:35 +00:00
|
|
|
if (data.get() != NULL) {
|
2015-01-08 02:04:45 +00:00
|
|
|
SkInstallDiscardablePixelRef(data, &bm);
|
2009-11-10 15:54:55 +00:00
|
|
|
}
|
|
|
|
return bm;
|
|
|
|
}
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static void drawCircle(SkCanvas* canvas, int r, SkColor color) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setColor(color);
|
|
|
|
|
|
|
|
canvas->drawCircle(SkIntToScalar(r), SkIntToScalar(r), SkIntToScalar(r),
|
|
|
|
paint);
|
|
|
|
}
|
|
|
|
|
2011-05-05 01:59:48 +00:00
|
|
|
class PictureView : public SampleView {
|
2009-11-10 15:54:55 +00:00
|
|
|
SkBitmap fBitmap;
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
2013-12-18 15:08:35 +00:00
|
|
|
PictureView() {
|
2009-11-10 15:54:55 +00:00
|
|
|
|
|
|
|
fBitmap = load_bitmap();
|
|
|
|
|
2014-04-13 19:09:42 +00:00
|
|
|
SkPictureRecorder recorder;
|
|
|
|
|
2014-04-17 23:35:06 +00:00
|
|
|
recorder.beginRecording(100, 100, NULL, 0);
|
2014-04-13 19:09:42 +00:00
|
|
|
fSubPicture = recorder.endRecording();
|
|
|
|
|
2014-04-17 23:35:06 +00:00
|
|
|
SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
|
2008-12-17 15:59:43 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2009-11-10 15:54:55 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 0, 0, NULL);
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
drawCircle(canvas, 50, SK_ColorBLACK);
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(fSubPicture);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->translate(SkIntToScalar(50), 0);
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(fSubPicture);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->translate(0, SkIntToScalar(50));
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(fSubPicture);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->translate(SkIntToScalar(-50), 0);
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(fSubPicture);
|
2014-04-13 19:09:42 +00:00
|
|
|
|
|
|
|
fPicture = recorder.endRecording();
|
|
|
|
|
2014-04-14 03:04:57 +00:00
|
|
|
// fPicture now has (4) references to fSubPicture. We can release our ref,
|
2014-04-13 19:09:42 +00:00
|
|
|
// and just unref fPicture in our destructor, and it will in turn take care of
|
2008-12-17 15:59:43 +00:00
|
|
|
// the other references to fSubPicture
|
|
|
|
fSubPicture->unref();
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual ~PictureView() {
|
|
|
|
fPicture->unref();
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
protected:
|
|
|
|
// overrides from SkEventSink
|
|
|
|
virtual bool onQuery(SkEvent* evt) {
|
|
|
|
if (SampleCode::TitleQ(*evt)) {
|
|
|
|
SampleCode::TitleR(evt, "Picture");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drawSomething(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
2009-11-10 15:54:55 +00:00
|
|
|
|
|
|
|
canvas->save();
|
2013-11-25 19:44:07 +00:00
|
|
|
canvas->scale(0.5f, 0.5f);
|
2009-11-10 15:54:55 +00:00
|
|
|
canvas->drawBitmap(fBitmap, 0, 0, NULL);
|
|
|
|
canvas->restore();
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
paint.setAntiAlias(true);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
paint.setColor(SK_ColorRED);
|
|
|
|
canvas->drawCircle(SkIntToScalar(50), SkIntToScalar(50),
|
|
|
|
SkIntToScalar(40), paint);
|
|
|
|
paint.setColor(SK_ColorBLACK);
|
|
|
|
paint.setTextSize(SkIntToScalar(40));
|
|
|
|
canvas->drawText("Picture", 7, SkIntToScalar(50), SkIntToScalar(62),
|
|
|
|
paint);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
|
2011-05-05 01:59:48 +00:00
|
|
|
virtual void onDrawContent(SkCanvas* canvas) {
|
2014-04-13 19:09:42 +00:00
|
|
|
this->drawSomething(canvas);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2014-04-13 19:09:42 +00:00
|
|
|
SkPictureRecorder recorder;
|
2014-04-17 23:35:06 +00:00
|
|
|
this->drawSomething(recorder.beginRecording(100, 100, NULL, 0));
|
2014-04-13 19:09:42 +00:00
|
|
|
SkAutoTUnref<SkPicture> pict(recorder.endRecording());
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->translate(SkIntToScalar(300), SkIntToScalar(50));
|
|
|
|
canvas->scale(-SK_Scalar1, -SK_Scalar1);
|
|
|
|
canvas->translate(-SkIntToScalar(100), -SkIntToScalar(50));
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(pict);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->restore();
|
|
|
|
|
|
|
|
canvas->save();
|
|
|
|
canvas->translate(SkIntToScalar(200), SkIntToScalar(150));
|
|
|
|
canvas->scale(SK_Scalar1, -SK_Scalar1);
|
|
|
|
canvas->translate(0, -SkIntToScalar(50));
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(pict);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->restore();
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->save();
|
|
|
|
canvas->translate(SkIntToScalar(100), SkIntToScalar(100));
|
|
|
|
canvas->scale(-SK_Scalar1, SK_Scalar1);
|
|
|
|
canvas->translate(-SkIntToScalar(100), 0);
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(pict);
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->restore();
|
2009-12-04 21:32:27 +00:00
|
|
|
|
2013-01-15 20:17:47 +00:00
|
|
|
#ifdef SK_DEVELOPER
|
2009-12-04 21:32:27 +00:00
|
|
|
if (false) {
|
|
|
|
SkDebugfDumper dumper;
|
|
|
|
SkDumpCanvas dumpCanvas(&dumper);
|
2014-06-04 12:40:44 +00:00
|
|
|
dumpCanvas.drawPicture(pict);
|
2009-12-04 21:32:27 +00:00
|
|
|
}
|
2013-01-15 20:17:47 +00:00
|
|
|
#endif
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2014-04-13 19:09:42 +00:00
|
|
|
// This used to re-record the sub-picture and redraw the parent
|
|
|
|
// A capability that is now forbidden!
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2013-09-09 20:09:12 +00:00
|
|
|
SkRandom rand(SampleCode::GetAnimTime());
|
2008-12-17 15:59:43 +00:00
|
|
|
canvas->translate(SkIntToScalar(10), SkIntToScalar(250));
|
2014-06-04 12:40:44 +00:00
|
|
|
canvas->drawPicture(fPicture);
|
2008-12-17 15:59:43 +00:00
|
|
|
delayInval(500);
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
private:
|
|
|
|
#define INVAL_ALL_TYPE "inval-all"
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
void delayInval(SkMSec delay) {
|
2011-08-04 13:50:17 +00:00
|
|
|
(new SkEvent(INVAL_ALL_TYPE, this->getSinkID()))->postDelay(delay);
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
virtual bool onEvent(const SkEvent& evt) {
|
|
|
|
if (evt.isType(INVAL_ALL_TYPE)) {
|
|
|
|
this->inval(NULL);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->INHERITED::onEvent(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
SkPicture* fPicture;
|
|
|
|
SkPicture* fSubPicture;
|
|
|
|
|
2011-05-05 01:59:48 +00:00
|
|
|
typedef SampleView INHERITED;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static SkView* MyFactory() { return new PictureView; }
|
|
|
|
static SkViewRegister reg(MyFactory);
|