Re: [osg-users] Using Vertex Attributes

2011-03-26 Thread Fred Smith
There must be something I'm missing. Below is a repro of my problem. This is a modification of the osgvertexattributes sample, from the trunk. Copy/paste the following code after createSimpleTestModel: Code: class MyCallback : public osg::Drawable::ComputeBoundingBoxCallback { public:

[osg-users] CMake issue with OpenTheads?

2011-03-26 Thread Philip Taylor
I just tried to regenerate my OSG build system and have come unstuck with an OpenThreads CMake issue, with the directive IF(NOT ANDROID) INCLUDE(CheckAtomicOps) ENDIF() Running CMake 2.8.4 on WinXP with VS2008 Where is the source code: C:/Projects/OSG/OpenSceneGraph/trunk/src Where

Re: [osg-users] Interest in new releases of 2.8.x?

2011-03-26 Thread Chris 'Xenon' Hanson
On 3/16/2011 11:27 AM, Chris 'Xenon' Hanson wrote: On 3/16/2011 11:21 AM, Robert Osfield wrote: I'm all for an 2.8.4 release. Excellent. Was there anyone else interested in a 2.8.4 release? Is anyone else using 2.8.3 at this point or is everyone on trunk now? -- Chris 'Xenon' Hanson,

Re: [osg-users] Interest in new releases of 2.8.x?

2011-03-26 Thread Jean-Sébastien Guay
Hi Chris, Was there anyone else interested in a 2.8.4 release? Is anyone else using 2.8.3 at this point or is everyone on trunk now? We're using 2.8.3, but we have no real problem waiting for an eventual 3.0 or whatever comes. Off the top of my head, there are no fixes that we

Re: [osg-users] Using Vertex Attributes

2011-03-26 Thread Sergey Polischuk
Hi Fred You can check if issue is somehow related to bounds calculation by using setCullingActive(false) on your node or geometry. Cheers, Sergey. 26.03.2011, 12:24, Fred Smith osgfo...@tevs.eu: There must be something I'm missing. Below is a repro of my problem. This is a modification of

[osg-users] Queer Problem: Saved .osg Model and osgViewer showing differences

2011-03-26 Thread Sanat Talmaki
Hi, I am having a peculiar problem. I am creating a geode and saving it out as a .osg file. I am also adding this to the osgViewer to see the results of creating the geode. However to my surprise, the model looks correct when I see it in my program using an instance osgviewer. As seen in

Re: [osg-users] Interest in new releases of 2.8.x?

2011-03-26 Thread Chris 'Xenon' Hanson
On 3/26/2011 2:39 PM, Jean-Sébastien Guay wrote: We're using 2.8.3, but we have no real problem waiting for an eventual 3.0 or whatever comes. Off the top of my head, there are no fixes that we absolutely need. That's why I didn't respond to your questions about 2.8.3.1 or 2.8.4... And I

Re: [osg-users] Queer Problem: Saved .osg Model and osgViewer showing differences

2011-03-26 Thread Paul Martz
Did you try disabling the osgUtil::Optimizer? export OSG_OPTIMIZER=OFF (or whatever is appropriate for your shell) -Paul On 3/26/2011 2:57 PM, Sanat Talmaki wrote: Hi, I am having a peculiar problem. I am creating a geode and saving it out as a .osg file. I am also adding this to the

[osg-users] Add ancillary data file to an archive

2011-03-26 Thread Eduardo Poyart
Hello, In my application I need to create a file that consists of essentially an OSGB file plus ancillary data. I have this ancillary data in either an external binary file or an in-memory buffer. I thought I could use osg::Archive to do the archiving and to handle the OSGB data. If I can write

Re: [osg-users] Queer Problem: Saved .osg Model and osgViewer showing differences

2011-03-26 Thread Sanat Talmaki
Hi Paul, I set the OPTIMIZER flag to off in my environment variables in windows. But I still get the same effect. What are the other causes potentially, for this ? Thanks, Sanat -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=37912#37912

[osg-users] Reading a Tiff out of memory?

2011-03-26 Thread Barry
Hopefully a quick question Under OS X it's easy to get existing images as tiff's NSImage *theImage = [NSImage imageNamed:@NSExitFullScreenTemplate]; NSData *tiffForm = [theImage TIFFRepresentation]; Where NSExitFullScreenTemplate is a standard system image that the OS manages for us.