| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2006, 2007, 2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2006, 2007, 2008, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "SkTypeface.h" | 34 #include "SkTypeface.h" |
| 35 | 35 |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 void FontPlatformData::setupPaint(SkPaint* paint, float deviceScaleFactor, const
Font*) const | 38 void FontPlatformData::setupPaint(SkPaint* paint, float deviceScaleFactor, const
Font*) const |
| 39 { | 39 { |
| 40 m_style.applyToPaint(*paint, deviceScaleFactor); | 40 m_style.applyToPaint(*paint, deviceScaleFactor); |
| 41 | 41 |
| 42 const float ts = m_textSize >= 0 ? m_textSize : 12; | 42 const float ts = m_textSize >= 0 ? m_textSize : 12; |
| 43 paint->setTextSize(SkFloatToScalar(ts)); | 43 paint->setTextSize(SkFloatToScalar(ts)); |
| 44 paint->setTypeface(toSkSp(m_typeface)); | 44 paint->setTypeface(m_typeface); |
| 45 paint->setFakeBoldText(m_syntheticBold); | 45 paint->setFakeBoldText(m_syntheticBold); |
| 46 paint->setTextSkewX(m_syntheticItalic ? -SK_Scalar1 / 4 : 0); | 46 paint->setTextSkewX(m_syntheticItalic ? -SK_Scalar1 / 4 : 0); |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace blink | 49 } // namespace blink |
| OLD | NEW |