Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: tests/BitmapGetColorTest.cpp

Issue 300263005: Revert "Revert of add colortable support to imagegenerator (https://codereview.chromium.org/3044430… (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/AAClipTest.cpp ('k') | tests/CachedDecodingPixelRefTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkBitmap.h" 8 #include "SkBitmap.h"
9 #include "SkRandom.h" 9 #include "SkRandom.h"
10 #include "SkRect.h" 10 #include "SkRect.h"
(...skipping 19 matching lines...) Expand all
30 // specify an area that doesn't touch (0,0) and may extend beyond the 30 // specify an area that doesn't touch (0,0) and may extend beyond the
31 // bitmap bounds (to test that we catch that in eraseArea 31 // bitmap bounds (to test that we catch that in eraseArea
32 const SkColor initColor = 0xFF0000FF; 32 const SkColor initColor = 0xFF0000FF;
33 const SkIRect area = { 1, 1, 3, 3 }; 33 const SkIRect area = { 1, 1, 3, 3 };
34 34
35 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) { 35 for (size_t i = 0; i < SK_ARRAY_COUNT(gRec); i++) {
36 SkImageInfo info = SkImageInfo::Make(2, 2, gRec[i].fColorType, 36 SkImageInfo info = SkImageInfo::Make(2, 2, gRec[i].fColorType,
37 kPremul_SkAlphaType); 37 kPremul_SkAlphaType);
38 SkBitmap bm; 38 SkBitmap bm;
39 uint32_t storage[4]; 39 uint32_t storage[4];
40 bm.installPixels(info, storage, info.minRowBytes(), NULL, NULL); 40 bm.installPixels(info, storage, info.minRowBytes());
41 41
42 bm.eraseColor(initColor); 42 bm.eraseColor(initColor);
43 bm.eraseArea(area, gRec[i].fInColor); 43 bm.eraseArea(area, gRec[i].fInColor);
44 44
45 SkColor c = bm.getColor(1, 1); 45 SkColor c = bm.getColor(1, 1);
46 REPORTER_ASSERT(reporter, c == gRec[i].fOutColor); 46 REPORTER_ASSERT(reporter, c == gRec[i].fOutColor);
47 } 47 }
48 } 48 }
OLDNEW
« no previous file with comments | « tests/AAClipTest.cpp ('k') | tests/CachedDecodingPixelRefTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698