Hi all,

in the meantime i found the mistake:

Code:
osg::ref_ptr<osg::DrawElementsUShort> whitePrimitives = new 
osg::DrawElementsUShort(GL_QUADS);


has to be 

Code:
osg::ref_ptr<osg::DrawElementsUInt> whitePrimitives = new 
osg::DrawElementsUInt(GL_QUADS);


because UShort only reaches from 0 .. 65535 :-* 

Cheers,
mfechter

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=61880#61880





_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to