Chromium Code Reviews| Index: skia/ext/image_operations.cc |
| diff --git a/skia/ext/image_operations.cc b/skia/ext/image_operations.cc |
| index d92e92719fd9793b5fdb429a66a4d9722461a10a..b4bfc79ca3b3ed2ac34009050454efb4521a0ea5 100644 |
| --- a/skia/ext/image_operations.cc |
| +++ b/skia/ext/image_operations.cc |
| @@ -367,7 +367,7 @@ SkBitmap ImageOperations::ResizeSubpixel(const SkBitmap& source, |
| "dst_pixels", dest_width*dest_height); |
| // Currently only works on Linux/BSD because these are the only platforms |
| // where SkFontHost::GetSubpixelOrder is defined. |
| -#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
|
Nico
2012/07/26 20:57:06
Curious that this wasn't guarded with !GTV before.
|
| +#if defined(OS_LINUX) && !defined(GTV) |
| // Understand the display. |
| const SkFontHost::LCDOrder order = SkFontHost::GetSubpixelOrder(); |
| const SkFontHost::LCDOrientation orientation = |