Hello Michael,

Michael Raab wrote:
I tested with 13ClusterClient and 12ClusterServer and got no crash as well. But 
looking in the code the ClusterClient uses no graphop's when loading the osb 
file. I'm not in my office at the moment, but I would guess that is the reason 
why it doesn't crash.

oh, my bad. I thought the issue with textured objects did occur independent of the graph ops. Anyway, I just committed a fix to createSharedIndex() (which is called from the StripeGraphOp) and with that I can display the osb you sent in a cluster even when testClusterClient is modified to apply graph ops.

        Cheers,
                Carsten
Index: Source/System/NodeCores/Drawables/Geometry/OSGGeoFunctions.cpp
===================================================================
RCS file: /cvsroot/opensg/OpenSG/Source/System/NodeCores/Drawables/Geometry/OSGGeoFunctions.cpp,v
retrieving revision 1.68
diff -r1.68 OSGGeoFunctions.cpp
3371,3373c3371,3379
<                 indexPtr->resize(iN);
<                 for(i = 0; i < iN; i++)
<                     indexPtr->setValue(i, i);
---
>                 
>                 beginEditCP(indexPtr);
>                 {
>                     indexPtr->resize(iN);
>                     for(i = 0; i < iN; i++)
>                         indexPtr->setValue(i, i);
>                 }
>                 endEditCP(indexPtr);
> 
------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Opensg-users mailing list
Opensg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to