[Igarden-commit] CommonSource/YAAFExtensions RGGLView.cpp, 1.15, 1.16 RGGLSVGDraw.h, 1.8, 1.9 RGGLB
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-02-22 04:11:03
|
Update of /cvsroot/igarden/CommonSource/YAAFExtensions In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv24908 Modified Files: RGGLView.cpp RGGLSVGDraw.h RGGLBitmapFont.h RGGLView.h Log Message: Win32 changes Index: RGGLView.cpp =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLView.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** RGGLView.cpp 18 Oct 2006 02:17:14 -0000 1.15 --- RGGLView.cpp 22 Feb 2007 04:11:01 -0000 1.16 *************** *** 36,39 **** --- 36,40 ---- #include "MyAssert.h" #include <XGWindow.h> + #include <stdio.h> static OSStatus aglReportError () Index: RGGLSVGDraw.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLSVGDraw.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** RGGLSVGDraw.h 3 Oct 2005 02:20:10 -0000 1.8 --- RGGLSVGDraw.h 22 Feb 2007 04:11:01 -0000 1.9 *************** *** 52,56 **** class SVGCacheEntry; ! class RGGLSVGDraw { public: --- 52,56 ---- class SVGCacheEntry; ! class YAAF_API RGGLSVGDraw { public: *************** *** 67,69 **** }; ! #endif // __RGGLSVGDraw \ No newline at end of file --- 67,69 ---- }; ! #endif // __RGGLSVGDraw Index: RGGLBitmapFont.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLBitmapFont.h,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RGGLBitmapFont.h 22 Feb 2007 04:06:41 -0000 1.12 --- RGGLBitmapFont.h 22 Feb 2007 04:11:01 -0000 1.13 *************** *** 49,53 **** using namespace yaaf; ! class RGGLBitmapFont { public: --- 49,53 ---- using namespace yaaf; ! class YAAF_API RGGLBitmapFont { public: Index: RGGLView.h =================================================================== RCS file: /cvsroot/igarden/CommonSource/YAAFExtensions/RGGLView.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** RGGLView.h 18 Oct 2006 02:17:14 -0000 1.13 --- RGGLView.h 22 Feb 2007 04:11:01 -0000 1.14 *************** *** 37,40 **** --- 37,44 ---- #if OPT_MACOS #include <AGL/agl.h> + #elif OPT_WINOS + #include <gl/glu.h> + #include <gl/glext.h> + #include <gl/gl.h> #endif #include <XGView.h> *************** *** 88,92 **** ! class RGGLView : public XGView { public: --- 92,96 ---- ! class YAAF_API RGGLView : public XGView { public: |