]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
rnc: fixed a Bug I introduced. GEOM couldn't compile anymore with OCC < 6.5.2
authorgdd <gdd>
Wed, 12 Oct 2011 09:12:05 +0000 (09:12 +0000)
committergdd <gdd>
Wed, 12 Oct 2011 09:12:05 +0000 (09:12 +0000)
src/GEOMGUI/GEOM_Displayer.cxx

index 55cbc43bbfd0c5938ef6f356b0f76e550742b1ea..a3c3aff6d8d7145402cb08f5c32b5db16b19bc3f 100644 (file)
@@ -321,11 +321,16 @@ GEOM_Displayer::GEOM_Displayer( SalomeApp_Study* st )
   myToActivate = true;
   // This parameter is used for activisation/deactivisation of objects to be displayed
   
-  // Activate parallel vizualisation only for testiong purpose  
+  #if OCC_VERSION_LARGE > 0x06050100 // Functionnality available only in OCCT 6.5.2
+  // Activate parallel vizualisation only for testing purpose  
   // and if the corresponding env variable is set to 1 
   char* parallel_visu = getenv("PARALLEL_VISU");
   if (parallel_visu && atoi(parallel_visu))
+  {
+    MESSAGE("Parallel visualisation on");
     BRepMesh_IncrementalMesh::SetParallelDefault(Standard_True);
+  }
+  #endif
 
   myViewFrame = 0;
 }