| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, 2009, 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "platform/fonts/SimpleFontData.h" | 32 #include "platform/fonts/SimpleFontData.h" |
| 33 | 33 |
| 34 #include <unicode/normlzr.h> | 34 #include <unicode/normlzr.h> |
| 35 #include "SkPaint.h" | 35 #include "SkPaint.h" |
| 36 #include "SkPath.h" | 36 #include "SkPath.h" |
| 37 #include "SkTypeface.h" | 37 #include "SkTypeface.h" |
| 38 #include "SkTypes.h" | 38 #include "SkTypes.h" |
| 39 #include "SkUtils.h" |
| 39 #include "platform/fonts/FontDescription.h" | 40 #include "platform/fonts/FontDescription.h" |
| 41 #include "platform/fonts/GlyphPage.h" |
| 40 #include "platform/fonts/VDMXParser.h" | 42 #include "platform/fonts/VDMXParser.h" |
| 41 #include "platform/geometry/FloatRect.h" | 43 #include "platform/geometry/FloatRect.h" |
| 42 #include "wtf/unicode/Unicode.h" | 44 #include "wtf/unicode/Unicode.h" |
| 43 | 45 |
| 44 namespace WebCore { | 46 namespace WebCore { |
| 45 | 47 |
| 46 // This is the largest VDMX table which we'll try to load and parse. | 48 // This is the largest VDMX table which we'll try to load and parse. |
| 47 static const size_t maxVDMXTableSize = 1024 * 1024; // 1 MB | 49 static const size_t maxVDMXTableSize = 1024 * 1024; // 1 MB |
| 48 | 50 |
| 49 void SimpleFontData::platformInit() | 51 void SimpleFontData::platformInit() |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 m_platformData.setupPaint(&paint); | 273 m_platformData.setupPaint(&paint); |
| 272 paint.setTextEncoding(SkPaint::kUTF16_TextEncoding); | 274 paint.setTextEncoding(SkPaint::kUTF16_TextEncoding); |
| 273 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) { | 275 if (paint.textToGlyphs(&normalizedCharacters[0], normalizedLength * 2, 0)) { |
| 274 addResult.storedValue->value = true; | 276 addResult.storedValue->value = true; |
| 275 return true; | 277 return true; |
| 276 } | 278 } |
| 277 return false; | 279 return false; |
| 278 } | 280 } |
| 279 #endif | 281 #endif |
| 280 | 282 |
| 283 bool SimpleFontData::fillGlyphPage(GlyphPage* pageToFill, unsigned offset, unsig
ned length, UChar* buffer, unsigned bufferLength) const |
| 284 { |
| 285 if (SkUTF16_IsHighSurrogate(buffer[bufferLength-1])) { |
| 286 SkDebugf("%s last char is high-surrogate", __FUNCTION__); |
| 287 return false; |
| 288 } |
| 289 |
| 290 SkAutoSTMalloc<GlyphPage::size, uint16_t> glyphStorage(length); |
| 291 |
| 292 uint16_t* glyphs = glyphStorage.get(); |
| 293 SkTypeface* typeface = platformData().typeface(); |
| 294 typeface->charsToGlyphs(buffer, SkTypeface::kUTF16_Encoding, glyphs, length)
; |
| 295 |
| 296 unsigned allGlyphs = 0; // track if any of the glyphIDs are non-zero |
| 297 for (unsigned i = 0; i < length; i++) { |
| 298 pageToFill->setGlyphDataForIndex(offset + i, glyphs[i], glyphs[i] ? this
: 0); |
| 299 allGlyphs |= glyphs[i]; |
| 300 } |
| 301 |
| 302 return allGlyphs; |
| 303 } |
| 304 |
| 281 } // namespace WebCore | 305 } // namespace WebCore |
| OLD | NEW |