| 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" | |
| 9 #include "SkCanvas.h" | 8 #include "SkCanvas.h" |
| 10 #include "SkColorPriv.h" | 9 #include "SkColorPriv.h" |
| 11 #include "SkMathPriv.h" | 10 #include "SkMathPriv.h" |
| 12 #include "SkRegion.h" | 11 #include "SkRegion.h" |
| 13 #include "SkSurface.h" | 12 #include "SkSurface.h" |
| 14 #include "Test.h" | 13 #include "Test.h" |
| 15 | 14 |
| 16 #if SK_SUPPORT_GPU | 15 #if SK_SUPPORT_GPU |
| 17 #include "GrContextFactory.h" | 16 #include "GrContextFactory.h" |
| 18 #include "SkGpuDevice.h" | 17 #include "SkGpuDevice.h" |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 checkRead(reporter, wkbmp, clippedRect.fLeft, | 383 checkRead(reporter, wkbmp, clippedRect.fLeft, |
| 385 clippedRect.fTop, true, false); | 384 clippedRect.fTop, true, false); |
| 386 } else { | 385 } else { |
| 387 REPORTER_ASSERT(reporter, !success); | 386 REPORTER_ASSERT(reporter, !success); |
| 388 } | 387 } |
| 389 } | 388 } |
| 390 } | 389 } |
| 391 } | 390 } |
| 392 } | 391 } |
| 393 } | 392 } |
| OLD | NEW |