blob: 97e6f0a0dbc2c7871d602995a2e9ffe48d702caf [file] [log] [blame]
scroggo@google.com8dc8bc52013-08-07 19:16:05 +00001/*
2 * Copyright 2013 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.h"
Matt Sarett68b8e3d2017-04-28 11:15:22 -04009#include "sk_tool_utils.h"
tfarinabcbc1782014-06-18 14:32:48 -070010
11#include "Resources.h"
scroggo@google.com8dc8bc52013-08-07 19:16:05 +000012#include "SkCanvas.h"
scroggo@google.com8dc8bc52013-08-07 19:16:05 +000013#include "SkOSFile.h"
14
15namespace skiagm {
16
17/**
18 * Test copying an image from 8888 to 4444.
19 */
20class CopyTo4444GM : public GM {
21public:
22 CopyTo4444GM() {}
23
24protected:
25 virtual SkString onShortName() {
26 return SkString("copyTo4444");
27 }
28
29 virtual SkISize onISize() {
Matt Sarettd16084f2017-05-26 11:40:25 -040030 return SkISize::Make(360, 180);
scroggo@google.com8dc8bc52013-08-07 19:16:05 +000031 }
32
33 virtual void onDraw(SkCanvas* canvas) {
34 SkBitmap bm, bm4444;
Matt Sarettd16084f2017-05-26 11:40:25 -040035 if (!GetResourceAsBitmap("dog.jpg", &bm)) {
scroggo@google.com8dc8bc52013-08-07 19:16:05 +000036 SkDebugf("Could not decode the file. Did you forget to set the "
37 "resourcePath?\n");
38 return;
39 }
40 canvas->drawBitmap(bm, 0, 0);
Matt Sarettd16084f2017-05-26 11:40:25 -040041
42 // This should dither or we will see artifacts in the background of the image.
Matt Sarett68b8e3d2017-04-28 11:15:22 -040043 SkAssertResult(sk_tool_utils::copy_to(&bm4444, kARGB_4444_SkColorType, bm));
scroggo@google.com7bb36ab2013-08-07 19:39:56 +000044 canvas->drawBitmap(bm4444, SkIntToScalar(bm.width()), 0);
scroggo@google.com8dc8bc52013-08-07 19:16:05 +000045 }
46
47private:
48 typedef GM INHERITED;
49};
50
51//////////////////////////////////////////////////////////////////////////////
52
53static GM* MyFactory(void*) { return new CopyTo4444GM; }
54static GMRegistry reg(MyFactory);
55
56}