• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "Resources.h"
9 #include "SkSurface.h"
10 #include "gm.h"
11 
12 DEF_SIMPLE_GM(makeRasterImage, canvas, 128,128) {
13     if (auto img = GetResourceAsImage("images/color_wheel.png")) {
14         canvas->drawImage(img->makeRasterImage(), 0,0);
15     }
16 }
17