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.
|
|
|
|
*/
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SampleCode.h"
|
|
|
|
#include "SkView.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkGradientShader.h"
|
|
|
|
#include "SkGraphics.h"
|
|
|
|
#include "SkImageDecoder.h"
|
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkRegion.h"
|
|
|
|
#include "SkShader.h"
|
|
|
|
#include "SkUtils.h"
|
|
|
|
#include "SkXfermode.h"
|
|
|
|
#include "SkColorPriv.h"
|
|
|
|
#include "SkColorFilter.h"
|
|
|
|
#include "SkTime.h"
|
|
|
|
#include "SkTypeface.h"
|
|
|
|
|
|
|
|
#include "SkOSFile.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2011-07-06 13:59:47 +00:00
|
|
|
#include "SkGpuDevice.h"
|
2012-08-02 14:03:32 +00:00
|
|
|
#else
|
|
|
|
class GrContext;
|
|
|
|
#endif
|
|
|
|
|
2011-07-06 13:59:47 +00:00
|
|
|
|
2011-07-06 15:10:25 +00:00
|
|
|
static void make_bitmap(SkBitmap* bitmap, GrContext* ctx) {
|
2011-07-06 13:59:47 +00:00
|
|
|
SkCanvas canvas;
|
|
|
|
|
2012-08-02 14:03:32 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2011-07-06 13:59:47 +00:00
|
|
|
if (ctx) {
|
|
|
|
SkDevice* dev = new SkGpuDevice(ctx, SkBitmap::kARGB_8888_Config, 64, 64);
|
|
|
|
canvas.setDevice(dev)->unref();
|
|
|
|
*bitmap = dev->accessBitmap(false);
|
2012-08-02 14:03:32 +00:00
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
2011-07-06 13:59:47 +00:00
|
|
|
bitmap->setConfig(SkBitmap::kARGB_8888_Config, 64, 64);
|
|
|
|
bitmap->allocPixels();
|
|
|
|
canvas.setBitmapDevice(*bitmap);
|
|
|
|
}
|
|
|
|
|
2009-10-15 18:51:46 +00:00
|
|
|
canvas.drawColor(SK_ColorRED);
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2011-05-19 19:58:58 +00:00
|
|
|
const SkPoint pts[] = { { 0, 0 }, { 64, 64 } };
|
2009-10-15 18:51:46 +00:00
|
|
|
const SkColor colors[] = { SK_ColorWHITE, SK_ColorBLUE };
|
|
|
|
paint.setShader(SkGradientShader::CreateLinear(pts, colors, NULL, 2,
|
2011-07-06 13:59:47 +00:00
|
|
|
SkShader::kClamp_TileMode))->unref();
|
2009-10-15 18:51:46 +00:00
|
|
|
canvas.drawCircle(32, 32, 32, paint);
|
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2011-04-22 14:10:48 +00:00
|
|
|
class BitmapRectView : public SampleView {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
BitmapRectView() {
|
2011-04-22 14:10:48 +00:00
|
|
|
this->setBGColor(SK_ColorGRAY);
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// overrides from SkEventSink
|
2009-10-15 18:51:46 +00:00
|
|
|
virtual bool onQuery(SkEvent* evt) {
|
|
|
|
if (SampleCode::TitleQ(*evt)) {
|
|
|
|
SampleCode::TitleR(evt, "BitmapRect");
|
2008-12-17 15:59:43 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return this->INHERITED::onQuery(evt);
|
|
|
|
}
|
|
|
|
|
2011-04-22 14:10:48 +00:00
|
|
|
virtual void onDrawContent(SkCanvas* canvas) {
|
2011-09-06 19:34:13 +00:00
|
|
|
GrContext* ctx = SampleCode::GetGr();
|
2011-07-06 15:10:25 +00:00
|
|
|
|
2009-10-15 18:51:46 +00:00
|
|
|
const SkIRect src[] = {
|
|
|
|
{ 0, 0, 32, 32 },
|
2009-10-16 14:48:38 +00:00
|
|
|
{ 0, 0, 80, 80 },
|
2009-10-15 18:51:46 +00:00
|
|
|
{ 32, 32, 96, 96 },
|
|
|
|
{ -32, -32, 32, 32, }
|
|
|
|
};
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
SkPaint paint;
|
2009-10-15 18:51:46 +00:00
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
2011-07-06 15:10:25 +00:00
|
|
|
paint.setColor(ctx ? SK_ColorGREEN : SK_ColorYELLOW);
|
2009-10-15 18:51:46 +00:00
|
|
|
|
2011-07-06 13:59:47 +00:00
|
|
|
SkBitmap bitmap;
|
2011-07-06 15:10:25 +00:00
|
|
|
make_bitmap(&bitmap, ctx);
|
2011-07-06 13:59:47 +00:00
|
|
|
|
2009-10-15 18:51:46 +00:00
|
|
|
SkRect dstR = { 0, 200, 128, 380 };
|
|
|
|
|
|
|
|
canvas->translate(16, 40);
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(src); i++) {
|
2009-10-16 14:48:38 +00:00
|
|
|
SkRect srcR;
|
|
|
|
srcR.set(src[i]);
|
2010-12-20 18:26:13 +00:00
|
|
|
|
2011-07-06 13:59:47 +00:00
|
|
|
canvas->drawBitmap(bitmap, 0, 0, &paint);
|
|
|
|
canvas->drawBitmapRect(bitmap, &src[i], dstR, &paint);
|
2009-10-15 18:51:46 +00:00
|
|
|
|
|
|
|
canvas->drawRect(dstR, paint);
|
2010-12-20 18:26:13 +00:00
|
|
|
canvas->drawRect(srcR, paint);
|
2009-10-15 18:51:46 +00:00
|
|
|
|
|
|
|
canvas->translate(160, 0);
|
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef SkView INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static SkView* MyFactory() { return new BitmapRectView; }
|
|
|
|
static SkViewRegister reg(MyFactory);
|
|
|
|
|