| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2007 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 10 matching lines...) Expand all Loading... |
| 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "core/html/HTMLCanvasElement.h" | 29 #include "core/html/HTMLCanvasElement.h" |
| 30 | 30 |
| 31 #include <math.h> | |
| 32 #include "HTMLNames.h" | 31 #include "HTMLNames.h" |
| 32 #include "RuntimeEnabledFeatures.h" |
| 33 #include "bindings/v8/ScriptController.h" | 33 #include "bindings/v8/ScriptController.h" |
| 34 #include "core/dom/Document.h" | 34 #include "core/dom/Document.h" |
| 35 #include "core/dom/ExceptionCode.h" | 35 #include "core/dom/ExceptionCode.h" |
| 36 #include "core/dom/WebCoreMemoryInstrumentation.h" | 36 #include "core/dom/WebCoreMemoryInstrumentation.h" |
| 37 #include "core/html/ImageData.h" | 37 #include "core/html/ImageData.h" |
| 38 #include "core/html/canvas/Canvas2DContextAttributes.h" | 38 #include "core/html/canvas/Canvas2DContextAttributes.h" |
| 39 #include "core/html/canvas/CanvasRenderingContext2D.h" | 39 #include "core/html/canvas/CanvasRenderingContext2D.h" |
| 40 #include "core/html/canvas/WebGLContextAttributes.h" |
| 41 #include "core/html/canvas/WebGLRenderingContext.h" |
| 40 #include "core/page/Frame.h" | 42 #include "core/page/Frame.h" |
| 41 #include "RuntimeEnabledFeatures.h" | |
| 42 #include "core/page/Settings.h" | 43 #include "core/page/Settings.h" |
| 43 #include "core/platform/MIMETypeRegistry.h" | 44 #include "core/platform/MIMETypeRegistry.h" |
| 44 #include "core/platform/graphics/GraphicsContextStateSaver.h" | 45 #include "core/platform/graphics/GraphicsContextStateSaver.h" |
| 45 #include "core/platform/graphics/ImageBuffer.h" | 46 #include "core/platform/graphics/ImageBuffer.h" |
| 47 #include "core/platform/graphics/transforms/AffineTransform.h" |
| 46 #include "core/rendering/RenderHTMLCanvas.h" | 48 #include "core/rendering/RenderHTMLCanvas.h" |
| 49 #include "public/platform/Platform.h" |
| 47 #include "wtf/MemoryInstrumentationHashSet.h" | 50 #include "wtf/MemoryInstrumentationHashSet.h" |
| 48 | 51 |
| 49 #include "core/html/canvas/WebGLContextAttributes.h" | 52 #include <math.h> |
| 50 #include "core/html/canvas/WebGLRenderingContext.h" | |
| 51 | |
| 52 #include "public/platform/Platform.h" | |
| 53 | 53 |
| 54 namespace WebCore { | 54 namespace WebCore { |
| 55 | 55 |
| 56 using namespace HTMLNames; | 56 using namespace HTMLNames; |
| 57 | 57 |
| 58 // These values come from the WhatWG spec. | 58 // These values come from the WhatWG spec. |
| 59 static const int DefaultWidth = 300; | 59 static const int DefaultWidth = 300; |
| 60 static const int DefaultHeight = 150; | 60 static const int DefaultHeight = 150; |
| 61 | 61 |
| 62 // Firefox limits width/height to 32767 pixels, but slows down dramatically befo
re it | 62 // Firefox limits width/height to 32767 pixels, but slows down dramatically befo
re it |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 568 |
| 569 AffineTransform HTMLCanvasElement::baseTransform() const | 569 AffineTransform HTMLCanvasElement::baseTransform() const |
| 570 { | 570 { |
| 571 ASSERT(m_hasCreatedImageBuffer); | 571 ASSERT(m_hasCreatedImageBuffer); |
| 572 FloatSize unscaledSize = size(); | 572 FloatSize unscaledSize = size(); |
| 573 FloatSize deviceSize = convertLogicalToDevice(unscaledSize); | 573 FloatSize deviceSize = convertLogicalToDevice(unscaledSize); |
| 574 IntSize size(deviceSize.width(), deviceSize.height()); | 574 IntSize size(deviceSize.width(), deviceSize.height()); |
| 575 AffineTransform transform; | 575 AffineTransform transform; |
| 576 if (size.width() && size.height()) | 576 if (size.width() && size.height()) |
| 577 transform.scaleNonUniform(size.width() / unscaledSize.width(), size.heig
ht() / unscaledSize.height()); | 577 transform.scaleNonUniform(size.width() / unscaledSize.width(), size.heig
ht() / unscaledSize.height()); |
| 578 return m_imageBuffer->baseTransform() * transform; | 578 return transform; |
| 579 } | 579 } |
| 580 | 580 |
| 581 void HTMLCanvasElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) co
nst | 581 void HTMLCanvasElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) co
nst |
| 582 { | 582 { |
| 583 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); | 583 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); |
| 584 HTMLElement::reportMemoryUsage(memoryObjectInfo); | 584 HTMLElement::reportMemoryUsage(memoryObjectInfo); |
| 585 info.addMember(m_observers, "observers"); | 585 info.addMember(m_observers, "observers"); |
| 586 info.addMember(m_context, "context"); | 586 info.addMember(m_context, "context"); |
| 587 info.addMember(m_imageBuffer, "imageBuffer"); | 587 info.addMember(m_imageBuffer, "imageBuffer"); |
| 588 info.addMember(m_contextStateSaver, "contextStateSaver"); | 588 info.addMember(m_contextStateSaver, "contextStateSaver"); |
| 589 info.addMember(m_presentedImage, "presentedImage"); | 589 info.addMember(m_presentedImage, "presentedImage"); |
| 590 info.addMember(m_copiedImage, "copiedImage"); | 590 info.addMember(m_copiedImage, "copiedImage"); |
| 591 } | 591 } |
| 592 | 592 |
| 593 } | 593 } |
| OLD | NEW |