[Igarden-commit] CommonSource/YAAFExtensions RGGLView.cpp, 1.11.2.7, 1.11.2.8
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2008-05-10 02:08:28
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv29392/YAAFExtensions Modified Files: Tag: Release_branch_v1 RGGLView.cpp Log Message: Correct printing issue on Macintel (colors reversed). Index: RGGLView.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLView.cpp,v retrieving revision 1.11.2.7 retrieving revision 1.11.2.8 diff -C2 -d -r1.11.2.7 -r1.11.2.8 *** RGGLView.cpp 8 Nov 2007 13:18:08 -0000 1.11.2.7 --- RGGLView.cpp 10 May 2008 02:08:21 -0000 1.11.2.8 *************** *** 354,358 **** --- 354,362 ---- if(_printfOffscreen == NULL) + #if OPT_NATIVEORDER _printfOffscreen = new CGWorld(localRect); + #else + _printfOffscreen = new CGWorld(localRect, k32BGRAPixelFormat); + #endif DrawToCGWorld(printRect, _printfOffscreen); _printfOffscreen->CopyImage(printRect); |