зеркало из https://github.com/mozilla/pjs.git
Bug 380484. Work around ATSUI's 32k pixel limitation; when creating textruns, split the textrun up into smaller pieces if necessary before we pass it to ATSUI. r=vlad
This commit is contained in:
Родитель
45323b4ff4
Коммит
e1e054be9c
|
@ -789,6 +789,8 @@ public:
|
|||
{ return (mFlags & gfxTextRunFactory::TEXT_IS_8BIT) ? mText.mSingle : nsnull; }
|
||||
const PRUnichar *GetTextUnicode() const
|
||||
{ return (mFlags & gfxTextRunFactory::TEXT_IS_8BIT) ? nsnull : mText.mDouble; }
|
||||
const PRUnichar GetChar(PRUint32 i) const
|
||||
{ return (mFlags & gfxTextRunFactory::TEXT_IS_8BIT) ? mText.mSingle[i] : mText.mDouble[i]; }
|
||||
PRUint32 GetHashCode() const { return mHashCode; }
|
||||
void SetHashCode(PRUint32 aHash) { mHashCode = aHash; }
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче