100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
| /*
 | |
|  * Copyright 2013 Google Inc.
 | |
|  *
 | |
|  * Use of this source code is governed by a BSD-style license that can be
 | |
|  * found in the LICENSE file.
 | |
|  */
 | |
| 
 | |
| #include "gm/gm.h"
 | |
| #include "include/core/SkBitmap.h"
 | |
| #include "include/core/SkCanvas.h"
 | |
| #include "include/core/SkColor.h"
 | |
| #include "include/core/SkImageFilter.h"
 | |
| #include "include/core/SkPaint.h"
 | |
| #include "include/core/SkRect.h"
 | |
| #include "include/core/SkRefCnt.h"
 | |
| #include "include/core/SkScalar.h"
 | |
| #include "include/core/SkSize.h"
 | |
| #include "include/core/SkString.h"
 | |
| #include "include/effects/SkImageFilters.h"
 | |
| 
 | |
| #include <utility>
 | |
| 
 | |
| static void make_bm(SkBitmap* bm) {
 | |
|     bm->allocN32Pixels(100, 100);
 | |
|     bm->eraseColor(SK_ColorBLUE);
 | |
| 
 | |
|     SkCanvas canvas(*bm);
 | |
|     SkPaint paint;
 | |
|     paint.setAntiAlias(true);
 | |
|     paint.setColor(SK_ColorRED);
 | |
|     canvas.drawCircle(50, 50, 50, paint);
 | |
| }
 | |
| 
 | |
| static void draw_1_bitmap(SkCanvas* canvas, const SkBitmap& bm, bool doClip,
 | |
|                          int dx, int dy, sk_sp<SkImageFilter> filter) {
 | |
|     SkAutoCanvasRestore acr(canvas, true);
 | |
|     SkPaint paint;
 | |
| 
 | |
|     SkRect clipR = SkRect::MakeXYWH(SkIntToScalar(dx),
 | |
|                                     SkIntToScalar(dy),
 | |
|                                     SkIntToScalar(bm.width()),
 | |
|                                     SkIntToScalar(bm.height()));
 | |
| 
 | |
|     paint.setImageFilter(std::move(filter));
 | |
|     clipR.inset(5, 5);
 | |
| 
 | |
|     canvas->translate(SkIntToScalar(bm.width() + 20), 0);
 | |
| 
 | |
|     if (doClip) {
 | |
|         canvas->save();
 | |
|         canvas->clipRect(clipR);
 | |
|     }
 | |
|     canvas->drawImage(bm.asImage(), SkIntToScalar(dx), SkIntToScalar(dy),
 | |
|                       SkSamplingOptions(), &paint);
 | |
|     if (doClip) {
 | |
|         canvas->restore();
 | |
|     }
 | |
| }
 | |
| 
 | |
| /**
 | |
|  *  Compare output of drawSprite and drawBitmap (esp. clipping and imagefilters)
 | |
|  */
 | |
| class SpriteBitmapGM : public skiagm::GM {
 | |
| public:
 | |
|     SpriteBitmapGM() {}
 | |
| 
 | |
| protected:
 | |
| 
 | |
|     SkString onShortName() override {
 | |
|         return SkString("spritebitmap");
 | |
|     }
 | |
| 
 | |
|     SkISize onISize() override {
 | |
|         return SkISize::Make(640, 480);
 | |
|     }
 | |
| 
 | |
|     void onDraw(SkCanvas* canvas) override {
 | |
|         SkBitmap bm;
 | |
|         make_bm(&bm);
 | |
| 
 | |
|         int dx = 10;
 | |
|         int dy = 10;
 | |
| 
 | |
|         SkScalar sigma = 8;
 | |
|         sk_sp<SkImageFilter> filter(SkImageFilters::Blur(sigma, sigma, nullptr));
 | |
| 
 | |
|         draw_1_bitmap(canvas, bm, false, dx, dy, nullptr);
 | |
|         dy += bm.height() + 20;
 | |
|         draw_1_bitmap(canvas, bm, false, dx, dy, filter);
 | |
|         dy += bm.height() + 20;
 | |
|         draw_1_bitmap(canvas, bm, true, dx, dy, nullptr);
 | |
|         dy += bm.height() + 20;
 | |
|         draw_1_bitmap(canvas, bm, true, dx, dy, filter);
 | |
|     }
 | |
| 
 | |
| private:
 | |
|     using INHERITED = GM;
 | |
| };
 | |
| DEF_GM( return new SpriteBitmapGM; )
 |