OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 namespace WebCore { | 30 namespace WebCore { |
31 | 31 |
32 class PLATFORM_EXPORT IdentityTransformOperation : public TransformOperation { | 32 class PLATFORM_EXPORT IdentityTransformOperation : public TransformOperation { |
33 public: | 33 public: |
34 static PassRefPtr<IdentityTransformOperation> create() | 34 static PassRefPtr<IdentityTransformOperation> create() |
35 { | 35 { |
36 return adoptRef(new IdentityTransformOperation()); | 36 return adoptRef(new IdentityTransformOperation()); |
37 } | 37 } |
38 | 38 |
| 39 virtual bool canBlendWith(const TransformOperation& other) const |
| 40 { |
| 41 return isSameType(other); |
| 42 } |
| 43 |
39 private: | 44 private: |
40 virtual bool isIdentity() const OVERRIDE FINAL { return true; } | 45 virtual bool isIdentity() const OVERRIDE FINAL { return true; } |
41 virtual OperationType type() const OVERRIDE { return Identity; } | 46 virtual OperationType type() const OVERRIDE { return Identity; } |
42 | 47 |
43 virtual bool operator==(const TransformOperation& o) const OVERRIDE | 48 virtual bool operator==(const TransformOperation& o) const OVERRIDE |
44 { | 49 { |
45 return isSameType(o); | 50 return isSameType(o); |
46 } | 51 } |
47 | 52 |
48 virtual void apply(TransformationMatrix&, const FloatSize&) const OVERRIDE {
} | 53 virtual void apply(TransformationMatrix&, const FloatSize&) const OVERRIDE {
} |
49 | 54 |
50 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, doub
le, bool = false) OVERRIDE | 55 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, doub
le, bool = false) OVERRIDE |
51 { | 56 { |
52 return this; | 57 return this; |
53 } | 58 } |
54 | 59 |
55 IdentityTransformOperation() | 60 IdentityTransformOperation() |
56 { | 61 { |
57 } | 62 } |
58 | 63 |
59 }; | 64 }; |
60 | 65 |
61 } // namespace WebCore | 66 } // namespace WebCore |
62 | 67 |
63 #endif // IdentityTransformOperation_h | 68 #endif // IdentityTransformOperation_h |
OLD | NEW |