mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
usp10: Use cached values in GPOS functions.
This commit is contained in:
parent
ef5daa9aa5
commit
7819ce61b5
@ -3285,9 +3285,6 @@ void SHAPE_ApplyOpenTypePositions(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *ps
|
|||||||
const TEXTRANGE_PROPERTIES *rpRangeProperties;
|
const TEXTRANGE_PROPERTIES *rpRangeProperties;
|
||||||
int i;
|
int i;
|
||||||
INT dirL;
|
INT dirL;
|
||||||
LPOUTLINETEXTMETRICW lpotm;
|
|
||||||
LOGFONTW lf;
|
|
||||||
HFONT hfont;
|
|
||||||
|
|
||||||
rpRangeProperties = &ShapingData[psa->eScript].defaultGPOSTextRange;
|
rpRangeProperties = &ShapingData[psa->eScript].defaultGPOSTextRange;
|
||||||
|
|
||||||
@ -3296,15 +3293,9 @@ void SHAPE_ApplyOpenTypePositions(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *ps
|
|||||||
|
|
||||||
load_ot_tables(hdc, psc);
|
load_ot_tables(hdc, psc);
|
||||||
|
|
||||||
if (!psc->GPOS_Table)
|
if (!psc->GPOS_Table || !psc->otm)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
i = GetOutlineTextMetricsW( hdc, 0, NULL);
|
|
||||||
lpotm = HeapAlloc(GetProcessHeap(),0,i);
|
|
||||||
GetOutlineTextMetricsW( hdc, i, lpotm);
|
|
||||||
hfont = GetCurrentObject(hdc, OBJ_FONT);
|
|
||||||
GetObjectW(hfont, sizeof(lf), &lf);
|
|
||||||
|
|
||||||
if (!psa->fLogicalOrder && psa->fRTL)
|
if (!psa->fLogicalOrder && psa->fRTL)
|
||||||
dirL = -1;
|
dirL = -1;
|
||||||
else
|
else
|
||||||
@ -3320,7 +3311,7 @@ void SHAPE_ApplyOpenTypePositions(HDC hdc, ScriptCache *psc, SCRIPT_ANALYSIS *ps
|
|||||||
if (!feature)
|
if (!feature)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
GPOS_apply_feature(lpotm, &lf, piAdvance, psc->GPOS_Table, feature, pwGlyphs, dirL, cGlyphs, pGoffset);
|
GPOS_apply_feature(psc->otm, &psc->lf, piAdvance, psc->GPOS_Table, feature, pwGlyphs, dirL, cGlyphs, pGoffset);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user