Update of /cvsroot/artoolkit/artoolkit/examples/simple
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv12823
Modified Files:
simpleTest.c
Log Message:
Default vconf is now consistent across all examples except twoView.
Index: simpleTest.c
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/examples/simple/simpleTest.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** simpleTest.c 18 Sep 2006 05:24:05 -0000 1.11
--- simpleTest.c 18 Sep 2006 23:39:18 -0000 1.12
***************
*** 19,41 ****
// Camera configuration.
//
! char *vconf =
! #if defined(_WIN32)
! "Data\\WDM_camera_flipV.xml";
! #elif defined(__APPLE__)
! "";
! #elif defined (__linux)
! #if defined (AR_INPUT_GSTREAMER)
! "";
! #elif defined (AR_INPUT_V4L)
! "";
! #elif defined (AR_INPUT_DV)
! "";
! #elif defined (AR_INPUT_1394CAM)
! "";
! #else
! #error Unknown Linux video interface type
! #endif /* __linux */
#else
! #error Unknown system type (Win32, Apple, SGI, or Linux only)
#endif
--- 19,26 ----
// Camera configuration.
//
! #ifdef _WIN32
! char *vconf = "Data\\WDM_camera_flipV.xml";
#else
! char *vconf = "";
#endif
|