fixme:font:load_VDMX Failed to retrieve vTable
hi my reports are not well displayed on my access97 app. fonts are displayed i anora location and separed I got this fixme fixme:font:load_VDMX Failed to retrieve vTable somebdoy knows how to fix it? thanks all
Hi, On Fri, Dec 09, 2005 at 10:53:33AM +0100, Curro Amores wrote:
hi my reports are not well displayed on my access97 app.
fonts are displayed i anora location and separed I got this fixme
fixme:font:load_VDMX Failed to retrieve vTable
dlls/gdi/freetype.c: if(WineEngGetFontData(font, MS_VDMX_TAG, offset, group, 4) != GDI_ERROR) { USHORT recs; BYTE startsz, endsz; BYTE *vTable; recs = GET_BE_WORD(group); startsz = group[2]; endsz = group[3]; TRACE("recs=%d startsz=%d endsz=%d\n", recs, startsz, endsz); vTable = HeapAlloc(GetProcessHeap(), 0, recs * 6); result = WineEngGetFontData(font, MS_VDMX_TAG, offset + 4, vTable, recs * 6); if(result == GDI_ERROR) { FIXME("Failed to retrieve vTable\n"); goto end; } This FIXME is quite confusing and should be fixed, since it's NOT at all about the "common" vTable term, but instead a VDMX font-related table AFAICS. Use winedbg, set a breakpoint on load_VDMX(), step through it until the 2nd WineEngGetFontData() (that one is failing!), then step through it until you know what exactly fails. Maybe even a simple freetype upgrade might resolve the issue? (in that case we'd need to know which freetype version is problematic) Andreas Mohr -- No programming skills!? Why not help translate many Linux applications! https://launchpad.ubuntu.com/rosetta
On Fri, Dec 09, 2005 at 10:53:33AM +0100, Curro Amores wrote:
hi my reports are not well displayed on my access97 app.
fonts are displayed i anora location and separed I got this fixme
fixme:font:load_VDMX Failed to retrieve vTable
somebdoy knows how to fix it?
It just means that the font doesn't have a VDMX table. The reason there's a fixme there is that I'm not sure whether we correctly scale the font in that case. Huw. -- Huw Davies huw(a)codeweavers.com
participants (3)
-
Andreas Mohr -
Curro Amores -
Huw D M Davies