Hello,

On Mon, 2014-03-24 at 20:25 +0800, Gerrit Voß wrote:
> Hi,
> 
> sorry for the long silence, I had to many OpenSG unrelated things on my plate 
> ;(.
> I'll have a look at this problem as well as the bool mfield one.

good news number one, I could reproduce it for the Windows and ATI
setup. ATI doesn't like the combination of VAO and display lists.

If I disable the display lists at the startup of your test 

int main(int argc, char **argv)
{
    OSG::osgInit(argc,argv);

    OSG::FieldContainer *pProto =
OSG::Geometry::getClassType().getPrototype();
    
    if(pProto != NULL)
    {
        OSG::Geometry *pGeo = dynamic_cast<OSG::Geometry *>(pProto);

        pGeo->setDlistCache(false);
    }

I get the correct rendering for the Windows ATI combination. 

I will work on a long term fix so that display lists are automatically
disabled if an ATI GPU is detected and VAO are used to render.

I also see the MFBool error and know where the problem is, this one
needs some fcd2code tweaking, I'll work on it as well.

kind regards
  gerrit



------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Opensg-users mailing list
Opensg-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to