blob: e304076a34dd9e69f8944d710e4c304b45438fa9 [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
reed@google.com48569642013-12-30 19:21:22 +000012static void test_bigwidth(skiatest::Reporter* reporter) {
13 SkBitmap bm;
14 int width = 1 << 29; // *4 will be the high-bit of 32bit int
15
16 REPORTER_ASSERT(reporter, bm.setConfig(SkBitmap::kA8_Config, width, 1));
17 REPORTER_ASSERT(reporter, bm.setConfig(SkBitmap::kRGB_565_Config, width, 1));
skia.committer@gmail.comf5e1f632013-12-31 07:01:36 +000018
reed@google.com48569642013-12-30 19:21:22 +000019 // for a 4-byte config, this width will compute a rowbytes of 0x80000000,
20 // which does not fit in a int32_t. setConfig should detect this, and fail.
21
22 // TODO: perhaps skia can relax this, and only require that rowBytes fit
23 // in a uint32_t (or larger), but for now this is the constraint.
24
25 REPORTER_ASSERT(reporter, !bm.setConfig(SkBitmap::kARGB_8888_Config, width, 1));
26}
27
halcanary@google.com44287342013-12-13 18:29:51 +000028/**
29 * This test contains basic sanity checks concerning bitmaps.
30 */
31DEF_TEST(Bitmap, reporter) {
32 const SkBitmap::Config conf = SkBitmap::kARGB_8888_Config;
33 // Zero-sized bitmaps are allowed
34 for (int width = 0; width < 2; ++width) {
35 for (int height = 0; height < 2; ++height) {
36 SkBitmap bm;
37 bool setConf = bm.setConfig(conf, width, height);
38 REPORTER_ASSERT(reporter, setConf);
39 if (setConf) {
40 REPORTER_ASSERT(reporter, bm.allocPixels(NULL));
41 }
halcanary@google.com2af6c122013-12-13 19:25:21 +000042 REPORTER_ASSERT(reporter, SkToBool(width & height) != bm.empty());
halcanary@google.com44287342013-12-13 18:29:51 +000043 }
44 }
skia.committer@gmail.comf5e1f632013-12-31 07:01:36 +000045
reed@google.com48569642013-12-30 19:21:22 +000046 test_bigwidth(reporter);
halcanary@google.com44287342013-12-13 18:29:51 +000047}