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

Side by Side Diff: tests/PremulAlphaRoundTripTest.cpp

Issue 551463004: introduce Props to surface (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add new file Created 6 years, 3 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/ImageFilterTest.cpp ('k') | tests/ReadWriteAlphaTest.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 "SkBitmapDevice.h" 8 #include "SkBitmapDevice.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkConfig8888.h" 10 #include "SkConfig8888.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 GrContextFactory::GLContextType type = 83 GrContextFactory::GLContextType type =
84 static_cast<GrContextFactory::GLContextType>(glCtxType); 84 static_cast<GrContextFactory::GLContextType>(glCtxType);
85 if (!GrContextFactory::IsRenderingGLContext(type)) { 85 if (!GrContextFactory::IsRenderingGLContext(type)) {
86 continue; 86 continue;
87 } 87 }
88 GrContext* context = factory->get(type); 88 GrContext* context = factory->get(type);
89 if (NULL == context) { 89 if (NULL == context) {
90 continue; 90 continue;
91 } 91 }
92 92
93 device.reset(SkGpuDevice::Create(context, info, 0)); 93 device.reset(SkGpuDevice::Create(context, info,
94 SkSurfaceProps(SkSurfaceProps::kLegacyFontH ost_InitType), 0));
94 #else 95 #else
95 continue; 96 continue;
96 #endif 97 #endif
97 } 98 }
98 SkCanvas canvas(device); 99 SkCanvas canvas(device);
99 100
100 for (size_t upmaIdx = 0; upmaIdx < SK_ARRAY_COUNT(gUnpremul); ++upma Idx) { 101 for (size_t upmaIdx = 0; upmaIdx < SK_ARRAY_COUNT(gUnpremul); ++upma Idx) {
101 fillCanvas(&canvas, gUnpremul[upmaIdx].fColorType, gUnpremul[upm aIdx].fPackProc); 102 fillCanvas(&canvas, gUnpremul[upmaIdx].fColorType, gUnpremul[upm aIdx].fPackProc);
102 103
103 const SkImageInfo info = SkImageInfo::Make(256, 256, gUnpremul[u pmaIdx].fColorType, 104 const SkImageInfo info = SkImageInfo::Make(256, 256, gUnpremul[u pmaIdx].fColorType,
(...skipping 20 matching lines...) Expand all
124 if (pixels1[x] != pixels2[x]) { 125 if (pixels1[x] != pixels2[x]) {
125 SkDebugf("%x != %x, x = %d, y = %d\n", pixels1[x], p ixels2[x], x, y); 126 SkDebugf("%x != %x, x = %d, y = %d\n", pixels1[x], p ixels2[x], x, y);
126 } 127 }
127 REPORTER_ASSERT(reporter, success = pixels1[x] == pixels 2[x]); 128 REPORTER_ASSERT(reporter, success = pixels1[x] == pixels 2[x]);
128 } 129 }
129 } 130 }
130 } 131 }
131 } 132 }
132 } 133 }
133 } 134 }
OLDNEW
« no previous file with comments | « tests/ImageFilterTest.cpp ('k') | tests/ReadWriteAlphaTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698