| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |