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 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef DrawingBuffer_h | 31 #ifndef DrawingBuffer_h |
32 #define DrawingBuffer_h | 32 #define DrawingBuffer_h |
33 | 33 |
34 #include "core/platform/graphics/GraphicsContext3D.h" | 34 #include "core/platform/graphics/GraphicsContext3D.h" |
35 #include "core/platform/graphics/GraphicsTypes3D.h" | |
36 #include "platform/geometry/IntSize.h" | 35 #include "platform/geometry/IntSize.h" |
| 36 #include "platform/graphics/GraphicsTypes3D.h" |
37 | 37 |
38 #include "public/platform/WebExternalTextureLayerClient.h" | 38 #include "public/platform/WebExternalTextureLayerClient.h" |
39 #include "public/platform/WebExternalTextureMailbox.h" | 39 #include "public/platform/WebExternalTextureMailbox.h" |
40 #include "wtf/Noncopyable.h" | 40 #include "wtf/Noncopyable.h" |
41 #include "wtf/OwnPtr.h" | 41 #include "wtf/OwnPtr.h" |
42 #include "wtf/PassOwnPtr.h" | 42 #include "wtf/PassOwnPtr.h" |
43 | 43 |
44 namespace WebKit { | 44 namespace WebKit { |
45 class WebExternalBitmap; | 45 class WebExternalBitmap; |
46 class WebExternalTextureLayer; | 46 class WebExternalTextureLayer; |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 // Mailboxes that were released by the compositor and can be used again by t
his DrawingBuffer. | 204 // Mailboxes that were released by the compositor and can be used again by t
his DrawingBuffer. |
205 Vector<RefPtr<MailboxInfo> > m_recycledMailboxes; | 205 Vector<RefPtr<MailboxInfo> > m_recycledMailboxes; |
206 RefPtr<MailboxInfo> m_lastColorBuffer; | 206 RefPtr<MailboxInfo> m_lastColorBuffer; |
207 | 207 |
208 RefPtr<ContextEvictionManager> m_contextEvictionManager; | 208 RefPtr<ContextEvictionManager> m_contextEvictionManager; |
209 }; | 209 }; |
210 | 210 |
211 } // namespace WebCore | 211 } // namespace WebCore |
212 | 212 |
213 #endif // DrawingBuffer_h | 213 #endif // DrawingBuffer_h |
OLD | NEW |