| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "skia/ext/bitmap_platform_device_mac.h" | 5 #include "skia/ext/bitmap_platform_device_mac.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "skia/ext/skia_utils_mac.h" | 8 #include "skia/ext/skia_utils_mac.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "third_party/skia/include/core/SkMatrix.h" | 10 #include "third_party/skia/include/core/SkMatrix.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 transform.setTranslate(50, 140); | 31 transform.setTranslate(50, 140); |
| 32 | 32 |
| 33 SkClipStack ignore; | 33 SkClipStack ignore; |
| 34 SkRegion clip_region; | 34 SkRegion clip_region; |
| 35 SkIRect rect; | 35 SkIRect rect; |
| 36 rect.set(0, 0, kWidth, kHeight); | 36 rect.set(0, 0, kWidth, kHeight); |
| 37 clip_region.setRect(rect); | 37 clip_region.setRect(rect); |
| 38 bitmap_->setMatrixClip(transform, clip_region, ignore); | 38 bitmap_->setMatrixClip(transform, clip_region, ignore); |
| 39 | 39 |
| 40 CGContextRef context = bitmap_->GetBitmapContext(); | 40 CGContextRef context = bitmap_->GetBitmapContext(); |
| 41 SkRect clip_rect = gfx::CGRectToSkRect(CGContextGetClipBoundingBox(context)); | 41 SkRect clip_rect = skia::CGRectToSkRect(CGContextGetClipBoundingBox(context)); |
| 42 transform.mapRect(&clip_rect); | 42 transform.mapRect(&clip_rect); |
| 43 EXPECT_EQ(0, clip_rect.fLeft); | 43 EXPECT_EQ(0, clip_rect.fLeft); |
| 44 EXPECT_EQ(0, clip_rect.fTop); | 44 EXPECT_EQ(0, clip_rect.fTop); |
| 45 EXPECT_EQ(kWidth, clip_rect.width()); | 45 EXPECT_EQ(kWidth, clip_rect.width()); |
| 46 EXPECT_EQ(kHeight, clip_rect.height()); | 46 EXPECT_EQ(kHeight, clip_rect.height()); |
| 47 } | 47 } |
| 48 | 48 |
| 49 TEST_F(BitmapPlatformDeviceMacTest, ClipRectTransformWithScale) { | 49 TEST_F(BitmapPlatformDeviceMacTest, ClipRectTransformWithScale) { |
| 50 SkMatrix transform; | 50 SkMatrix transform; |
| 51 transform.setScale(0.5, 0.5); | 51 transform.setScale(0.5, 0.5); |
| 52 | 52 |
| 53 SkClipStack unused; | 53 SkClipStack unused; |
| 54 SkRegion clip_region; | 54 SkRegion clip_region; |
| 55 SkIRect rect; | 55 SkIRect rect; |
| 56 rect.set(0, 0, kWidth, kHeight); | 56 rect.set(0, 0, kWidth, kHeight); |
| 57 clip_region.setRect(rect); | 57 clip_region.setRect(rect); |
| 58 bitmap_->setMatrixClip(transform, clip_region, unused); | 58 bitmap_->setMatrixClip(transform, clip_region, unused); |
| 59 | 59 |
| 60 CGContextRef context = bitmap_->GetBitmapContext(); | 60 CGContextRef context = bitmap_->GetBitmapContext(); |
| 61 SkRect clip_rect = gfx::CGRectToSkRect(CGContextGetClipBoundingBox(context)); | 61 SkRect clip_rect = skia::CGRectToSkRect(CGContextGetClipBoundingBox(context)); |
| 62 transform.mapRect(&clip_rect); | 62 transform.mapRect(&clip_rect); |
| 63 EXPECT_EQ(0, clip_rect.fLeft); | 63 EXPECT_EQ(0, clip_rect.fLeft); |
| 64 EXPECT_EQ(0, clip_rect.fTop); | 64 EXPECT_EQ(0, clip_rect.fTop); |
| 65 EXPECT_EQ(kWidth, clip_rect.width()); | 65 EXPECT_EQ(kWidth, clip_rect.width()); |
| 66 EXPECT_EQ(kHeight, clip_rect.height()); | 66 EXPECT_EQ(kHeight, clip_rect.height()); |
| 67 } | 67 } |
| 68 | 68 |
| 69 } // namespace skia | 69 } // namespace skia |
| OLD | NEW |