Re: resend add missing glyph code to GetGlyphIndices
23 Aug
2006
23 Aug
'06
4:19 p.m.
"Jeff L" <lats(a)yless4u.com.au> wrote:
if(dc->gdiFont) - ret = WineEngGetGlyphIndices(dc->gdiFont, lpstr, count, pgi, flags); + ret = WineEngGetGlyphIndices(hdc, dc->gdiFont, lpstr, count, pgi, flags);
...
+ GetTextMetricsW(hdc, &textm);
As an additional optimization, probably it would be better to call WineEngGetTextMetrics instead of GetTextMetricsW to avoid introducing hdc as another parameter of WineEngGetGlyphIndices. -- Dmitry.
23 Aug
23 Aug
4:50 p.m.
New subject: resend add missing glyph code to GetGlyphIndices
Dmitry Timoshkov wrote:
As an additional optimization, probably it would be better to call WineEngGetTextMetrics instead of GetTextMetricsW to avoid introducing hdc as another parameter of WineEngGetGlyphIndices.
Sounds good and simpler, will give it a try. Jeff
7054
Age (days ago)
7054
Last active (days ago)
1 comments
2 participants
participants (2)
-
Dmitry Timoshkov -
Jeff Latimer