| 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 20 matching lines...) Expand all Loading... |
| 31 #ifndef DrawingBuffer_h | 31 #ifndef DrawingBuffer_h |
| 32 #define DrawingBuffer_h | 32 #define DrawingBuffer_h |
| 33 | 33 |
| 34 #include "platform/PlatformExport.h" | 34 #include "platform/PlatformExport.h" |
| 35 #include "platform/geometry/IntSize.h" | 35 #include "platform/geometry/IntSize.h" |
| 36 #include "platform/graphics/GraphicsTypes3D.h" | 36 #include "platform/graphics/GraphicsTypes3D.h" |
| 37 #include "platform/graphics/gpu/WebGLImageConversion.h" | 37 #include "platform/graphics/gpu/WebGLImageConversion.h" |
| 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 "third_party/khronos/GLES2/gl2.h" | 40 #include "third_party/khronos/GLES2/gl2.h" |
| 41 #include "third_party/khronos/GLES2/gl2ext.h" | |
| 42 #include "third_party/skia/include/core/SkBitmap.h" | 41 #include "third_party/skia/include/core/SkBitmap.h" |
| 43 #include "wtf/Deque.h" | 42 #include "wtf/Deque.h" |
| 44 #include "wtf/Noncopyable.h" | 43 #include "wtf/Noncopyable.h" |
| 45 #include "wtf/OwnPtr.h" | 44 #include "wtf/OwnPtr.h" |
| 46 #include "wtf/PassOwnPtr.h" | 45 #include "wtf/PassOwnPtr.h" |
| 47 #include "wtf/RefCounted.h" | 46 #include "wtf/RefCounted.h" |
| 48 | 47 |
| 49 namespace gpu { | 48 namespace gpu { |
| 50 namespace gles2 { | 49 namespace gles2 { |
| 51 class GLES2Interface; | 50 class GLES2Interface; |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 // used to resize the Canvas. | 372 // used to resize the Canvas. |
| 374 SkBitmap m_resizingBitmap; | 373 SkBitmap m_resizingBitmap; |
| 375 | 374 |
| 376 // Used to flip a bitmap vertically. | 375 // Used to flip a bitmap vertically. |
| 377 Vector<uint8_t> m_scanline; | 376 Vector<uint8_t> m_scanline; |
| 378 }; | 377 }; |
| 379 | 378 |
| 380 } // namespace blink | 379 } // namespace blink |
| 381 | 380 |
| 382 #endif // DrawingBuffer_h | 381 #endif // DrawingBuffer_h |
| OLD | NEW |