Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r52030 - in sandbox-branches/andreo/guigl: boost/guigl boost/guigl/platform/impl libs/guigl/example
From: andreytorba_at_[hidden]
Date: 2009-03-28 10:10:50


Author: andreo
Date: 2009-03-28 10:10:50 EDT (Sat, 28 Mar 2009)
New Revision: 52030
URL: http://svn.boost.org/trac/boost/changeset/52030

Log:
GCC
Text files modified:
   sandbox-branches/andreo/guigl/boost/guigl/color.hpp | 2 +-
   sandbox-branches/andreo/guigl/boost/guigl/platform/impl/tess.hpp | 5 +++++
   sandbox-branches/andreo/guigl/libs/guigl/example/ggl.cpp | 6 +++++-
   sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp | 6 +++++-
   4 files changed, 16 insertions(+), 3 deletions(-)

Modified: sandbox-branches/andreo/guigl/boost/guigl/color.hpp
==============================================================================
--- sandbox-branches/andreo/guigl/boost/guigl/color.hpp (original)
+++ sandbox-branches/andreo/guigl/boost/guigl/color.hpp 2009-03-28 10:10:50 EDT (Sat, 28 Mar 2009)
@@ -95,4 +95,4 @@
     }
 }}}
 
-#endif BOOST__GUIGL__COLOR_HPP
+#endif // BOOST__GUIGL__COLOR_HPP

Modified: sandbox-branches/andreo/guigl/boost/guigl/platform/impl/tess.hpp
==============================================================================
--- sandbox-branches/andreo/guigl/boost/guigl/platform/impl/tess.hpp (original)
+++ sandbox-branches/andreo/guigl/boost/guigl/platform/impl/tess.hpp 2009-03-28 10:10:50 EDT (Sat, 28 Mar 2009)
@@ -12,6 +12,11 @@
 #include <boost/guigl/types.hpp>
 #include <boost/guigl/platform/glu.hpp>
 
+// TODO: solve proble with CALLBACK definition
+#ifndef CALLBACK
+#define CALLBACK
+#endif
+
 namespace boost{ namespace guigl { namespace gl {
 
     class tess : boost::noncopyable {

Modified: sandbox-branches/andreo/guigl/libs/guigl/example/ggl.cpp
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/example/ggl.cpp (original)
+++ sandbox-branches/andreo/guigl/libs/guigl/example/ggl.cpp 2009-03-28 10:10:50 EDT (Sat, 28 Mar 2009)
@@ -122,7 +122,11 @@
         glEnd();
     }
 
- BOOST_GUIGL_WIDGET_DRAW_IMPL(my_widget);
+ void draw()
+ {
+ draw_prologue();
+ draw_epilogue();
+ }
 };
 
 int main()

Modified: sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp
==============================================================================
--- sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp (original)
+++ sandbox-branches/andreo/guigl/libs/guigl/example/polygon.cpp 2009-03-28 10:10:50 EDT (Sat, 28 Mar 2009)
@@ -137,7 +137,11 @@
 
     }
 
- BOOST_GUIGL_WIDGET_DRAW_IMPL(my_widget);
+ void draw()
+ {
+ draw_prologue();
+ draw_epilogue();
+ }
 };
 
 int main()


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk