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

Side by Side Diff: Source/platform/graphics/GraphicsContext.cpp

Issue 453653003: [SVG] DisplayList-based patterns. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 9 tests marked for rebaseline Created 6 years, 4 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) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Google Inc. All rights reserved. 3 * Copyright (C) 2013 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 500
501 SkCanvas* savedCanvas = m_canvas; 501 SkCanvas* savedCanvas = m_canvas;
502 SkMatrix savedMatrix = getTotalMatrix(); 502 SkMatrix savedMatrix = getTotalMatrix();
503 503
504 if (!contextDisabled()) { 504 if (!contextDisabled()) {
505 IntRect recordingRect = enclosingIntRect(bounds); 505 IntRect recordingRect = enclosingIntRect(bounds);
506 m_canvas = displayList->beginRecording(recordingRect.size()); 506 m_canvas = displayList->beginRecording(recordingRect.size());
507 507
508 // We want the bounds offset mapped to (0, 0), such that the display lis t content 508 // We want the bounds offset mapped to (0, 0), such that the display lis t content
509 // is fully contained within the SkPictureRecord's bounds. 509 // is fully contained within the SkPictureRecord's bounds.
510 // FIXME: we record this translation *in the picture*, and compensate ex ternally in
511 // drawDisplayList(). But if the picture is passed to an unaware consume r, this info
512 // is lost. I don't think we have to record the translation, we should i nvestigate
513 // extracting it out of the picture.
510 if (!toFloatSize(bounds.location()).isZero()) { 514 if (!toFloatSize(bounds.location()).isZero()) {
511 m_canvas->translate(-bounds.x(), -bounds.y()); 515 m_canvas->translate(-bounds.x(), -bounds.y());
512 // To avoid applying the offset repeatedly in getTotalMatrix(), we p re-apply it here. 516 // To avoid applying the offset repeatedly in getTotalMatrix(), we p re-apply it here.
513 savedMatrix.preTranslate(bounds.x(), bounds.y()); 517 savedMatrix.preTranslate(bounds.x(), bounds.y());
514 } 518 }
515 } 519 }
516 520
517 m_recordingStateStack.append(RecordingState(savedCanvas, savedMatrix, displa yList)); 521 m_recordingStateStack.append(RecordingState(savedCanvas, savedMatrix, displa yList));
518 } 522 }
519 523
(...skipping 1418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1938 // FIXME: This is to not break tests (it results in the filter bitmap fl ag 1942 // FIXME: This is to not break tests (it results in the filter bitmap fl ag
1939 // being set to true). We need to decide if we respect InterpolationNone 1943 // being set to true). We need to decide if we respect InterpolationNone
1940 // being returned from computeInterpolationQuality. 1944 // being returned from computeInterpolationQuality.
1941 resampling = InterpolationLow; 1945 resampling = InterpolationLow;
1942 } 1946 }
1943 resampling = limitInterpolationQuality(this, resampling); 1947 resampling = limitInterpolationQuality(this, resampling);
1944 paint->setFilterLevel(static_cast<SkPaint::FilterLevel>(resampling)); 1948 paint->setFilterLevel(static_cast<SkPaint::FilterLevel>(resampling));
1945 } 1949 }
1946 1950
1947 } 1951 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698