OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 } | 70 } |
71 | 71 |
72 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override { | 72 bool currentFrameKnownToBeOpaque(MetadataMode = UseCurrentMetadata) override { |
73 return false; | 73 return false; |
74 } | 74 } |
75 | 75 |
76 void destroyDecodedData() override { | 76 void destroyDecodedData() override { |
77 // Image pure virtual stub. | 77 // Image pure virtual stub. |
78 } | 78 } |
79 | 79 |
80 void draw(SkCanvas*, | 80 void draw(PaintCanvas*, |
81 const SkPaint&, | 81 const PaintFlags&, |
82 const FloatRect&, | 82 const FloatRect&, |
83 const FloatRect&, | 83 const FloatRect&, |
84 RespectImageOrientationEnum, | 84 RespectImageOrientationEnum, |
85 ImageClampingMode, | 85 ImageClampingMode, |
86 const ColorBehavior&) override { | 86 const ColorBehavior&) override { |
87 // Image pure virtual stub. | 87 // Image pure virtual stub. |
88 } | 88 } |
89 | 89 |
90 private: | 90 private: |
91 explicit TestImage(sk_sp<SkImage> image) : m_image(image) {} | 91 explicit TestImage(sk_sp<SkImage> image) : m_image(image) {} |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 { | 222 { |
223 SkAutoLockPixels lock1(dragBitmap); | 223 SkAutoLockPixels lock1(dragBitmap); |
224 SkAutoLockPixels lock2(expectedBitmap); | 224 SkAutoLockPixels lock2(expectedBitmap); |
225 for (int x = 0; x < dragBitmap.width(); ++x) | 225 for (int x = 0; x < dragBitmap.width(); ++x) |
226 for (int y = 0; y < dragBitmap.height(); ++y) | 226 for (int y = 0; y < dragBitmap.height(); ++y) |
227 EXPECT_EQ(expectedBitmap.getColor(x, y), dragBitmap.getColor(x, y)); | 227 EXPECT_EQ(expectedBitmap.getColor(x, y), dragBitmap.getColor(x, y)); |
228 } | 228 } |
229 } | 229 } |
230 | 230 |
231 } // namespace blink | 231 } // namespace blink |
OLD | NEW |