Changeset 140444 in webkit
- Timestamp:
- Jan 22, 2013, 11:24:50 AM (14 years ago)
- Location:
- branches/chromium/1364
- Files:
-
- 1 edited
- 2 copied
-
LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-zero-size-expected.txt (copied) (copied from trunk/LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-zero-size-expected.txt )
-
LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-zero-size.html (copied) (copied from trunk/LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-zero-size.html )
-
Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/1364/Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp
r139059 r140444 2403 2403 realizeSaves(); 2404 2404 modifiableState().m_imageSmoothingEnabled = enabled; 2405 drawingContext()->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone); 2405 GraphicsContext* c = drawingContext(); 2406 if (c) 2407 c->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone); 2406 2408 } 2407 2409
Note:
See TracChangeset
for help on using the changeset viewer.