blob: ef6953191230925e3aec09866e345a4956e3223e [file] [log] [blame]
halcanary@google.com44287342013-12-13 18:29:51 +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 "SkBitmap.h"
9
10#include "Test.h"
halcanary@google.com44287342013-12-13 18:29:51 +000011
reedf0aed972014-07-01 12:48:11 -070012static void test_allocpixels(skiatest::Reporter* reporter) {
13 const int width = 10;
14 const int height = 10;
15 const SkImageInfo info = SkImageInfo::MakeN32Premul(width, height);
16 const size_t explicitRowBytes = info.minRowBytes() + 24;
17
18 SkBitmap bm;
19 bm.setInfo(info);
20 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
21 bm.allocPixels();
22 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
23 bm.reset();
24 bm.allocPixels(info);
25 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
26
27 bm.setInfo(info, explicitRowBytes);
28 REPORTER_ASSERT(reporter, explicitRowBytes == bm.rowBytes());
29 bm.allocPixels();
30 REPORTER_ASSERT(reporter, explicitRowBytes == bm.rowBytes());
31 bm.reset();
32 bm.allocPixels(info, explicitRowBytes);
33 REPORTER_ASSERT(reporter, explicitRowBytes == bm.rowBytes());
34
35 bm.reset();
36 bm.setInfo(info, 0);
37 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
38 bm.reset();
39 bm.allocPixels(info, 0);
40 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
41
42 bm.reset();
43 bool success = bm.setInfo(info, info.minRowBytes() - 1); // invalid for 32bit
44 REPORTER_ASSERT(reporter, !success);
45 REPORTER_ASSERT(reporter, bm.isNull());
46}
47
reed@google.com48569642013-12-30 19:21:22 +000048static void test_bigwidth(skiatest::Reporter* reporter) {
49 SkBitmap bm;
50 int width = 1 << 29; // *4 will be the high-bit of 32bit int
51
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000052 SkImageInfo info = SkImageInfo::MakeA8(width, 1);
53 REPORTER_ASSERT(reporter, bm.setInfo(info));
reede5ea5002014-09-03 11:54:58 -070054 REPORTER_ASSERT(reporter, bm.setInfo(info.makeColorType(kRGB_565_SkColorType)));
skia.committer@gmail.comf5e1f632013-12-31 07:01:36 +000055
reed@google.com48569642013-12-30 19:21:22 +000056 // for a 4-byte config, this width will compute a rowbytes of 0x80000000,
57 // which does not fit in a int32_t. setConfig should detect this, and fail.
58
59 // TODO: perhaps skia can relax this, and only require that rowBytes fit
60 // in a uint32_t (or larger), but for now this is the constraint.
61
reede5ea5002014-09-03 11:54:58 -070062 REPORTER_ASSERT(reporter, !bm.setInfo(info.makeColorType(kN32_SkColorType)));
reed@google.com48569642013-12-30 19:21:22 +000063}
64
halcanary@google.com44287342013-12-13 18:29:51 +000065/**
66 * This test contains basic sanity checks concerning bitmaps.
67 */
68DEF_TEST(Bitmap, reporter) {
halcanary@google.com44287342013-12-13 18:29:51 +000069 // Zero-sized bitmaps are allowed
70 for (int width = 0; width < 2; ++width) {
71 for (int height = 0; height < 2; ++height) {
72 SkBitmap bm;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000073 bool setConf = bm.setInfo(SkImageInfo::MakeN32Premul(width, height));
halcanary@google.com44287342013-12-13 18:29:51 +000074 REPORTER_ASSERT(reporter, setConf);
75 if (setConf) {
reed84825042014-09-02 12:50:45 -070076 bm.allocPixels();
halcanary@google.com44287342013-12-13 18:29:51 +000077 }
halcanary@google.com2af6c122013-12-13 19:25:21 +000078 REPORTER_ASSERT(reporter, SkToBool(width & height) != bm.empty());
halcanary@google.com44287342013-12-13 18:29:51 +000079 }
80 }
skia.committer@gmail.comf5e1f632013-12-31 07:01:36 +000081
reed@google.com48569642013-12-30 19:21:22 +000082 test_bigwidth(reporter);
reedf0aed972014-07-01 12:48:11 -070083 test_allocpixels(reporter);
halcanary@google.com44287342013-12-13 18:29:51 +000084}