[artoolkit-commits] artoolkit/examples/exview exview.c,1.2,1.3
Optical marker tracking and overlay for augmented reality.
Brought to you by:
philip_lamb
From: Philip L. <phi...@us...> - 2005-04-13 06:14:10
|
Update of /cvsroot/artoolkit/artoolkit/examples/exview In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30087 Modified Files: exview.c Log Message: Fix for glutInit bug in OSX libARgsub. Index: exview.c =================================================================== RCS file: /cvsroot/artoolkit/artoolkit/examples/exview/exview.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** exview.c 22 Nov 2004 03:37:26 -0000 1.2 --- exview.c 13 Apr 2005 06:14:00 -0000 1.3 *************** *** 62,65 **** --- 62,68 ---- int main(int argc, char **argv) { + #ifdef __APPLE__ + glutInit(&argc, argv); + #endif if( init() < 0 ) exit(0); |