Update of /cvsroot/artoolkit/artoolkit/examples/simpleVRML
In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv22636
Modified Files:
simpleVRML.vcproj simpleVRML.c
Log Message:
Build debug variant on Windows.
Index: simpleVRML.c
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/examples/simpleVRML/simpleVRML.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** simpleVRML.c 1 Jun 2006 03:40:14 -0000 1.13
--- simpleVRML.c 29 Aug 2006 01:36:52 -0000 1.14
***************
*** 455,459 ****
// Test render all the VRML objects.
! printf("About to render VRML objects \n");
glEnable(GL_TEXTURE_2D);
for (i = 0; i < gObjectDataCount; i++) {
--- 455,460 ----
// Test render all the VRML objects.
! fprintf(stdout, "Pre-rendering the VRML objects...");
! fflush(stdout);
glEnable(GL_TEXTURE_2D);
for (i = 0; i < gObjectDataCount; i++) {
***************
*** 461,464 ****
--- 462,466 ----
}
glDisable(GL_TEXTURE_2D);
+ fprintf(stdout, " done\n");
// Register GLUT event-handling callbacks.
Index: simpleVRML.vcproj
===================================================================
RCS file: /cvsroot/artoolkit/artoolkit/examples/simpleVRML/simpleVRML.vcproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** simpleVRML.vcproj 21 Sep 2005 18:14:20 -0000 1.4
--- simpleVRML.vcproj 29 Aug 2006 01:36:52 -0000 1.5
***************
*** 41,44 ****
--- 41,45 ----
AdditionalLibraryDirectories="$(ProjectDir)..\..\lib;$(ProjectDir)..\..\OpenVRML\lib;$(ProjectDir)..\..\OpenVRML\dependencies\lib"
IgnoreDefaultLibraryNames="libc.lib;libcd.lib;libcmt.lib;libcmtd.lib;msvcrt.lib"
+ GenerateDebugInformation="TRUE"
SubSystem="1"
TargetMachine="1"/>
|