Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
grayscalejpg.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2014 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"
13#include "tools/DecodeUtils.h"
14#include "tools/Resources.h"
15
16/*
17 * Test decoding grayscale JPEG
18 * http://crbug.com/436079
19 */
20DEF_SIMPLE_GM(grayscalejpg, canvas, 128, 128) {
21 const char kResource[] = "images/grayscale.jpg";
23 if (image) {
24 canvas->drawImage(image, 0.0f, 0.0f);
25 } else {
26 SkDebugf("\nCould not decode file '%s'. Did you forget"
27 " to set the resourcePath?\n", kResource);
28 }
29}
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
sk_sp< SkImage > image
Definition examples.cpp:29
#define DEF_SIMPLE_GM(NAME, CANVAS, W, H)
Definition gm.h:50
sk_sp< SkImage > GetResourceAsImage(const char *resource)
Definition DecodeUtils.h:25