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 19 matching lines...) Expand all Loading... |
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" | 35 #include "core/platform/graphics/GraphicsTypes3D.h" |
36 #include "core/platform/graphics/IntSize.h" | 36 #include "core/platform/graphics/IntSize.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; |
47 class WebGraphicsContext3D; | 47 class WebGraphicsContext3D; |
48 class WebLayer; | 48 class WebLayer; |
49 } | 49 } |
50 | 50 |
51 namespace WebCore { | 51 namespace WebCore { |
52 class GraphicsContext3D; | 52 class GraphicsContext3D; |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 // Mailboxes that were released by the compositor and can be used again by t
his DrawingBuffer. | 205 // Mailboxes that were released by the compositor and can be used again by t
his DrawingBuffer. |
206 Vector<RefPtr<MailboxInfo> > m_recycledMailboxes; | 206 Vector<RefPtr<MailboxInfo> > m_recycledMailboxes; |
207 RefPtr<MailboxInfo> m_lastColorBuffer; | 207 RefPtr<MailboxInfo> m_lastColorBuffer; |
208 | 208 |
209 RefPtr<ContextEvictionManager> m_contextEvictionManager; | 209 RefPtr<ContextEvictionManager> m_contextEvictionManager; |
210 }; | 210 }; |
211 | 211 |
212 } // namespace WebCore | 212 } // namespace WebCore |
213 | 213 |
214 #endif // DrawingBuffer_h | 214 #endif // DrawingBuffer_h |
OLD | NEW |