Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Side by Side Diff: Source/core/html/HTMLCanvasElement.cpp

Issue 210043004: Draw thin slices of an image w/ anti-aliasing for 2D <canvas> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Clarifications. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 m_didFailToCreateImageBuffer = false; 475 m_didFailToCreateImageBuffer = false;
476 476
477 updateExternallyAllocatedMemory(); 477 updateExternallyAllocatedMemory();
478 478
479 if (is3D()) { 479 if (is3D()) {
480 // Early out for WebGL canvases 480 // Early out for WebGL canvases
481 return; 481 return;
482 } 482 }
483 483
484 m_imageBuffer->context()->setShouldClampToSourceRect(false); 484 m_imageBuffer->context()->setShouldClampToSourceRect(false);
485 m_imageBuffer->context()->disableAntialiasingOptimizationForHairlineImages() ;
485 m_imageBuffer->context()->setImageInterpolationQuality(CanvasDefaultInterpol ationQuality); 486 m_imageBuffer->context()->setImageInterpolationQuality(CanvasDefaultInterpol ationQuality);
486 // Enabling MSAA overrides a request to disable antialiasing. This is true r egardless of whether the 487 // Enabling MSAA overrides a request to disable antialiasing. This is true r egardless of whether the
487 // rendering mode is accelerated or not. For consistency, we don't want to a pply AA in accelerated 488 // rendering mode is accelerated or not. For consistency, we don't want to a pply AA in accelerated
488 // canvases but not in unaccelerated canvases. 489 // canvases but not in unaccelerated canvases.
489 if (!msaaSampleCount && document().settings() && !document().settings()->ant ialiased2dCanvasEnabled()) 490 if (!msaaSampleCount && document().settings() && !document().settings()->ant ialiased2dCanvasEnabled())
490 m_imageBuffer->context()->setShouldAntialias(false); 491 m_imageBuffer->context()->setShouldAntialias(false);
491 // GraphicsContext's defaults don't always agree with the 2d canvas spec. 492 // GraphicsContext's defaults don't always agree with the 2d canvas spec.
492 // See CanvasRenderingContext2D::State::State() for more information. 493 // See CanvasRenderingContext2D::State::State() for more information.
493 m_imageBuffer->context()->setMiterLimit(10); 494 m_imageBuffer->context()->setMiterLimit(10);
494 m_imageBuffer->context()->setStrokeThickness(1); 495 m_imageBuffer->context()->setStrokeThickness(1);
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 { 654 {
654 return !originClean(); 655 return !originClean();
655 } 656 }
656 657
657 FloatSize HTMLCanvasElement::sourceSize() const 658 FloatSize HTMLCanvasElement::sourceSize() const
658 { 659 {
659 return FloatSize(width(), height()); 660 return FloatSize(width(), height());
660 } 661 }
661 662
662 } 663 }
OLDNEW
« no previous file with comments | « PerformanceTests/Canvas/drawimage-not-pixelaligned.html ('k') | Source/platform/graphics/GraphicsContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698