Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
make_raster_image.cpp
Go to the documentation of this file.
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"
12#include "tools/DecodeUtils.h"
13#include "tools/Resources.h"
14
15DEF_SIMPLE_GM(makeRasterImage, canvas, 128,128) {
16 if (auto img = ToolUtils::GetResourceAsImage("images/color_wheel.png")) {
17 canvas->drawImage(img->makeRasterImage(), 0,0);
18 }
19}
#define DEF_SIMPLE_GM(NAME, CANVAS, W, H)
Definition gm.h:50
sk_sp< SkImage > GetResourceAsImage(const char *resource)
Definition DecodeUtils.h:25