OLD | NEW |
1 // Copyright (C) 2013 Google Inc. All rights reserved. | 1 // Copyright (C) 2013 Google Inc. All rights reserved. |
2 // | 2 // |
3 // Redistribution and use in source and binary forms, with or without | 3 // Redistribution and use in source and binary forms, with or without |
4 // modification, are permitted provided that the following conditions are | 4 // modification, are permitted provided that the following conditions are |
5 // met: | 5 // met: |
6 // | 6 // |
7 // * Redistributions of source code must retain the above copyright | 7 // * Redistributions of source code must retain the above copyright |
8 // notice, this list of conditions and the following disclaimer. | 8 // notice, this list of conditions and the following disclaimer. |
9 // * Redistributions in binary form must reproduce the above | 9 // * Redistributions in binary form must reproduce the above |
10 // copyright notice, this list of conditions and the following disclaimer | 10 // copyright notice, this list of conditions and the following disclaimer |
(...skipping 18 matching lines...) Expand all Loading... |
29 #ifndef GraphicsContextState_h | 29 #ifndef GraphicsContextState_h |
30 #define GraphicsContextState_h | 30 #define GraphicsContextState_h |
31 | 31 |
32 #include "platform/graphics/DrawLooperBuilder.h" | 32 #include "platform/graphics/DrawLooperBuilder.h" |
33 #include "platform/graphics/GraphicsTypes.h" | 33 #include "platform/graphics/GraphicsTypes.h" |
34 #include "platform/graphics/StrokeData.h" | 34 #include "platform/graphics/StrokeData.h" |
35 #include "third_party/skia/include/core/SkColorFilter.h" | 35 #include "third_party/skia/include/core/SkColorFilter.h" |
36 #include "third_party/skia/include/core/SkPaint.h" | 36 #include "third_party/skia/include/core/SkPaint.h" |
37 #include "wtf/Allocator.h" | 37 #include "wtf/Allocator.h" |
38 #include "wtf/Noncopyable.h" | 38 #include "wtf/Noncopyable.h" |
39 #include "wtf/PtrUtil.h" | 39 #include "wtf/PassOwnPtr.h" |
40 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
41 #include <memory> | |
42 | 41 |
43 namespace blink { | 42 namespace blink { |
44 | 43 |
45 // Encapsulates the state information we store for each pushed graphics state. | 44 // Encapsulates the state information we store for each pushed graphics state. |
46 // Only GraphicsContext can use this class. | 45 // Only GraphicsContext can use this class. |
47 class PLATFORM_EXPORT GraphicsContextState final { | 46 class PLATFORM_EXPORT GraphicsContextState final { |
48 USING_FAST_MALLOC(GraphicsContextState); | 47 USING_FAST_MALLOC(GraphicsContextState); |
49 public: | 48 public: |
50 static std::unique_ptr<GraphicsContextState> create() | 49 static PassOwnPtr<GraphicsContextState> create() |
51 { | 50 { |
52 return wrapUnique(new GraphicsContextState()); | 51 return adoptPtr(new GraphicsContextState()); |
53 } | 52 } |
54 | 53 |
55 static std::unique_ptr<GraphicsContextState> createAndCopy(const GraphicsCon
textState& other) | 54 static PassOwnPtr<GraphicsContextState> createAndCopy(const GraphicsContextS
tate& other) |
56 { | 55 { |
57 return wrapUnique(new GraphicsContextState(other)); | 56 return adoptPtr(new GraphicsContextState(other)); |
58 } | 57 } |
59 | 58 |
60 void copy(const GraphicsContextState&); | 59 void copy(const GraphicsContextState&); |
61 | 60 |
62 // SkPaint objects that reflect the current state. If the length of the | 61 // SkPaint objects that reflect the current state. If the length of the |
63 // path to be stroked is known, pass it in for correct dash or dot placement
. | 62 // path to be stroked is known, pass it in for correct dash or dot placement
. |
64 const SkPaint& strokePaint(int strokedPathLength = 0) const; | 63 const SkPaint& strokePaint(int strokedPathLength = 0) const; |
65 const SkPaint& fillPaint() const { return m_fillPaint; } | 64 const SkPaint& fillPaint() const { return m_fillPaint; } |
66 | 65 |
67 uint16_t saveCount() const { return m_saveCount; } | 66 uint16_t saveCount() const { return m_saveCount; } |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 InterpolationQuality m_interpolationQuality; | 125 InterpolationQuality m_interpolationQuality; |
127 | 126 |
128 uint16_t m_saveCount; | 127 uint16_t m_saveCount; |
129 | 128 |
130 bool m_shouldAntialias : 1; | 129 bool m_shouldAntialias : 1; |
131 }; | 130 }; |
132 | 131 |
133 } // namespace blink | 132 } // namespace blink |
134 | 133 |
135 #endif // GraphicsContextState_h | 134 #endif // GraphicsContextState_h |
OLD | NEW |