Thread: [Plib-users] problem with fnt and release mode
Brought to you by:
sjbaker
From: Eric D. <sre...@ho...> - 2000-12-20 11:33:07
|
Hello, I am compiling the font library using MSVC++ 5.0. When I compile in = debug mode, everything is working fine, but when I compile the library = in release mode, the output text is trashy. Only the first letter is = right. Does anyone ever had that problem? Eric |
From: Paolo L. <p.l...@ci...> - 2000-12-20 14:38:01
|
Me too, anyone interested can look at images in ftp://ftp.cira.it/paolo/plib/fnt/ (plib 1.3.1, examples 1.1.8, fnt_test a= nd PUI's complex, same in 1.2.0 and earlier). Everything else in plib is ok. My configuration for plib is: - Work: NT4-SP4, Matrox Millennium G200 latest drivers (OGL ICD), Cygnus B20.2 gcc 2.95.2 - Home: Windows98, Matrox Marvel G200 latest drivers, same dev env Greetings - -------------------------------------------------------------------------= --- - Paolo Leoncini phone: +39 (0823) 623134 Scientific Visualization & Virtual Reality fax: +39 (0823) 623126 CIRA - Italian Center for Aerospace Researches mailto:p.l...@ci... Via Maiorise - 81043 Capua (CE) Italy http://www.cira.it/research/vis -----Messaggio originale----- Da: pli...@li... [mailto:pli...@li...]Per conto di Eric Desrosie= rs Inviato: mercoled=EC 20 dicembre 2000 8.29 A: pli...@li... Oggetto: [Plib-users] problem with fnt and release mode Hello, I am compiling the font library using MSVC++ 5.0. When I compile in debug mode, everything is working fine, but when I compile the library in relea= se mode, the output text is trashy. Only the first letter is right. Does anyone ever had that problem? Eric |
From: Don L. <laf...@mu...> - 2000-12-20 14:57:23
|
I can confirm that too. My matrox users have no fonts displaying at all. And I use LOTS of text. http://www.avsim.com/hangar/utils/freefd Don Lafontaine On Wed, 20 Dec 2000, Paolo Leoncini wrote: > Me too, anyone interested can look at images in > ftp://ftp.cira.it/paolo/plib/fnt/ (plib 1.3.1, examples 1.1.8, fnt_test a= nd > PUI's complex, same in 1.2.0 and earlier). Everything else in plib is ok. > My configuration for plib is: > - Work: NT4-SP4, Matrox Millennium G200 latest drivers (OGL ICD), Cygnus > B20.2 gcc 2.95.2 > - Home: Windows98, Matrox Marvel G200 latest drivers, same dev env >=20 > Greetings - >=20 > -------------------------------------------------------------------------= --- > - > Paolo Leoncini phone: +39 (0823) 623134 > Scientific Visualization & Virtual Reality fax: +39 (0823) 623126 > CIRA - Italian Center for Aerospace Researches mailto:p.l...@ci... > Via Maiorise - 81043 Capua (CE) Italy > http://www.cira.it/research/vis >=20 > -----Messaggio originale----- > Da: pli...@li... > [mailto:pli...@li...]Per conto di Eric Desrosie= rs > Inviato: mercoled=EC 20 dicembre 2000 8.29 > A: pli...@li... > Oggetto: [Plib-users] problem with fnt and release mode >=20 >=20 > Hello, >=20 > I am compiling the font library using MSVC++ 5.0. When I compile in debug > mode, everything is working fine, but when I compile the library in relea= se > mode, the output text is trashy. Only the first letter is right. >=20 > Does anyone ever had that problem? >=20 > Eric >=20 >=20 > _______________________________________________ > plib-users mailing list > pli...@li... > http://lists.sourceforge.net/mailman/listinfo/plib-users >=20 |
From: Norman V. <nh...@ca...> - 2000-12-20 19:55:15
|
Paolo Leoncini writes: >My configuration for plib is: >- Work: NT4-SP4, Matrox Millennium G200 latest drivers (OGL ICD), > Cygnus B20.2 gcc 2.95.2 Hey Paolo Do yourself a favor and upgrade your Cygnus enviroment It has come a long ways since B20.x :-))) Ciao Norman |
From: Sam S. <sa...@sp...> - 2000-12-20 16:13:15
|
Well I can suggest a few things that could be the cause of this problem. Try turning off all the optimisations for your release build and see if that has an affect. If that doesn't then the only thing I can think of is VC++'s stupid variable initialisation. In debug mode VC++ zero's or NULLs all values, but in release mode they just just get set to random crap. Very stupid I know (surely you really want the random values when you are *debugging*?), but that could be hiding an obscure bug in this instance. Sam ----- Original Message ----- From: "Eric Desrosiers" <sre...@ho...> To: <pli...@li...> Sent: Wednesday, December 20, 2000 7:28 AM Subject: [Plib-users] problem with fnt and release mode Hello, I am compiling the font library using MSVC++ 5.0. When I compile in debug mode, everything is working fine, but when I compile the library in release mode, the output text is trashy. Only the first letter is right. Does anyone ever had that problem? Eric |