| 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 27 matching lines...) Expand all Loading... |
| 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 "public/platform/WebGraphicsContext3D.h" | 40 #include "public/platform/WebGraphicsContext3D.h" |
| 41 #include "third_party/khronos/GLES2/gl2.h" | 41 #include "third_party/khronos/GLES2/gl2.h" |
| 42 #include "third_party/khronos/GLES2/gl2ext.h" | 42 #include "third_party/khronos/GLES2/gl2ext.h" |
| 43 #include "third_party/skia/include/core/SkBitmap.h" | 43 #include "third_party/skia/include/core/SkBitmap.h" |
| 44 #include "wtf/Deque.h" | 44 #include "wtf/Deque.h" |
| 45 #include "wtf/Noncopyable.h" | 45 #include "wtf/Noncopyable.h" |
| 46 #include "wtf/OwnPtr.h" | 46 #include "wtf/OwnPtr.h" |
| 47 #include "wtf/PassOwnPtr.h" | 47 #include "wtf/PassOwnPtr.h" |
| 48 #include "wtf/RefCounted.h" |
| 48 | 49 |
| 49 namespace gpu { | 50 namespace gpu { |
| 50 namespace gles2 { | 51 namespace gles2 { |
| 51 class GLES2Interface; | 52 class GLES2Interface; |
| 52 } | 53 } |
| 53 } | 54 } |
| 54 | 55 |
| 55 namespace WTF { | 56 namespace WTF { |
| 56 class ArrayBufferContents; | 57 class ArrayBufferContents; |
| 57 } | 58 } |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 // used to resize the Canvas. | 376 // used to resize the Canvas. |
| 376 SkBitmap m_resizingBitmap; | 377 SkBitmap m_resizingBitmap; |
| 377 | 378 |
| 378 // Used to flip a bitmap vertically. | 379 // Used to flip a bitmap vertically. |
| 379 Vector<uint8_t> m_scanline; | 380 Vector<uint8_t> m_scanline; |
| 380 }; | 381 }; |
| 381 | 382 |
| 382 } // namespace blink | 383 } // namespace blink |
| 383 | 384 |
| 384 #endif // DrawingBuffer_h | 385 #endif // DrawingBuffer_h |
| OLD | NEW |