blob: 0c617bf2ebacfca70b550c06677d6cbea2b1f017 [file] [log] [blame]
halcanaryd476a172014-12-02 06:37:21 -08001/*
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 "Resources.h"
9#include "SkCanvas.h"
10#include "gm.h"
11
12/*
13 * Test decoding grayscale JPEG
14 * http://crbug.com/436079
15 */
16DEF_SIMPLE_GM(grayscalejpg, canvas, 128, 128) {
17 const char kResource[] = "grayscale.jpg";
18 SkBitmap bitmap;
19 if (GetResourceAsBitmap(kResource, &bitmap)) {
20 canvas->drawBitmap(bitmap, 0.0f, 0.0f);
21 } else {
22 SkDebugf("\nCould not decode file '%s'. Did you forget"
23 " to set the resourcePath?\n", kResource);
24 }
25}