blob: 06c1af1d8c977316a046ff6dabdc9efee35a56df [file] [log] [blame]
Mike Klein98e38e22018-01-12 15:59:53 +00001/*
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
12DEF_SIMPLE_GM(makeRasterImage, canvas, 128,128) {
13 auto img = GetResourceAsImage("images/color_wheel.png");
14 canvas->drawImage(img->makeRasterImage(), 0,0);
15}