1 /*
2  * Copyright 2018 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #include "gm/gm.h"
9 #include "include/core/SkCanvas.h"
10 #include "include/core/SkImage.h"
11 #include "include/core/SkRefCnt.h"
12 #include "tools/Resources.h"
13 
14 DEF_SIMPLE_GM(makeRasterImage, canvas, 128,128) {
15     if (auto img = GetResourceAsImage("images/color_wheel.png")) {
16         canvas->drawImage(img->makeRasterImage(), 0,0);
17     }
18 }
19