| Index: cc/TiledLayerChromium.cpp
|
| diff --git a/cc/TiledLayerChromium.cpp b/cc/TiledLayerChromium.cpp
|
| index 3b72f19b7f70ce5f8ebedd71c4adc910fcfa0dc8..9a9b566411dea3949e414dc2cf4a95bfb753d1fe 100644
|
| --- a/cc/TiledLayerChromium.cpp
|
| +++ b/cc/TiledLayerChromium.cpp
|
| @@ -301,16 +301,16 @@ void TiledLayerChromium::setNeedsDisplayRect(const FloatRect& dirtyRect)
|
| LayerChromium::setNeedsDisplayRect(dirtyRect);
|
| }
|
|
|
| -void TiledLayerChromium::setUseLCDText(bool useLCDText)
|
| +void TiledLayerChromium::setCanUseLCDText(bool canUseLCDText)
|
| {
|
| - LayerChromium::setUseLCDText(useLCDText);
|
| + LayerChromium::setCanUseLCDText(canUseLCDText);
|
|
|
| CCLayerTilingData::BorderTexelOption borderTexelOption;
|
| #if OS(ANDROID)
|
| // Always want border texels and GL_LINEAR due to pinch zoom.
|
| borderTexelOption = CCLayerTilingData::HasBorderTexels;
|
| #else
|
| - borderTexelOption = useLCDText ? CCLayerTilingData::NoBorderTexels : CCLayerTilingData::HasBorderTexels;
|
| + borderTexelOption = canUseLCDText ? CCLayerTilingData::NoBorderTexels : CCLayerTilingData::HasBorderTexels;
|
| #endif
|
| setBorderTexelOption(borderTexelOption);
|
| }
|
|
|