OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> | 3 * Copyright (C) 2007 Alp Toker <alp@atoker.com> |
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
51 #include <memory> | 51 #include <memory> |
52 | 52 |
53 #define CanvasDefaultInterpolationQuality InterpolationLow | 53 #define CanvasDefaultInterpolationQuality InterpolationLow |
54 | 54 |
55 namespace blink { | 55 namespace blink { |
56 | 56 |
57 class AffineTransform; | 57 class AffineTransform; |
58 class CanvasContextCreationAttributes; | 58 class CanvasContextCreationAttributes; |
59 class CanvasRenderingContext; | 59 class CanvasRenderingContext; |
60 class CanvasRenderingContextFactory; | 60 class CanvasRenderingContextFactory; |
61 class Float32ImageData; | |
Justin Novosad
2016/12/08 18:16:35
Why is this needed?
zakerinasab
2016/12/08 20:40:52
Removed for now.
| |
61 class GraphicsContext; | 62 class GraphicsContext; |
62 class HitTestCanvasResult; | 63 class HitTestCanvasResult; |
63 class HTMLCanvasElement; | 64 class HTMLCanvasElement; |
64 class Image; | 65 class Image; |
65 class ImageBitmapOptions; | 66 class ImageBitmapOptions; |
66 class ImageBuffer; | 67 class ImageBuffer; |
67 class ImageBufferSurface; | 68 class ImageBufferSurface; |
68 class ImageData; | 69 class ImageData; |
69 class IntSize; | 70 class IntSize; |
70 | 71 |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
304 // Used for OffscreenCanvas that controls this HTML canvas element | 305 // Used for OffscreenCanvas that controls this HTML canvas element |
305 std::unique_ptr<CanvasSurfaceLayerBridge> m_surfaceLayerBridge; | 306 std::unique_ptr<CanvasSurfaceLayerBridge> m_surfaceLayerBridge; |
306 | 307 |
307 int m_numFramesSinceLastRenderingModeSwitch; | 308 int m_numFramesSinceLastRenderingModeSwitch; |
308 bool m_pendingRenderingModeSwitch; | 309 bool m_pendingRenderingModeSwitch; |
309 }; | 310 }; |
310 | 311 |
311 } // namespace blink | 312 } // namespace blink |
312 | 313 |
313 #endif // HTMLCanvasElement_h | 314 #endif // HTMLCanvasElement_h |
OLD | NEW |