blob: 34a8cd2f274cbe988314752a4696c5a7b50446e0 [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) {
Hal Canarybaa2a282018-11-26 15:34:12 -050013 if (auto img = GetResourceAsImage("images/color_wheel.png")) {
14 canvas->drawImage(img->makeRasterImage(), 0,0);
15 }
Mike Klein98e38e22018-01-12 15:59:53 +000016}