Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-11 Thread Steven Powers
That looks like it did it! Thanks! -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=8256#8256 ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegraph.org/listinfo.cgi/o

Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-11 Thread Wiedemann, Rudolf, OPS3
:23 AM To: osg-users@lists.openscenegraph.org Subject: Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer Hi Steven, I'm not so sure, but maybe you should try to set the render target implementation to FRAME_BUFFER_OBJECT, as done in the prerender example? What graphics card do you use? Does it

Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-10 Thread Guy
Hi Steven, I'm not so sure, but maybe you should try to set the render target implementation to FRAME_BUFFER_OBJECT, as done in the prerender example? What graphics card do you use? Does it work for you with GL_RGBA16F_ARB? Guy. I'm getting all 0s for my pixel buffer when I use GL_RGBA32F_ARB

Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-10 Thread Tomlinson, Gordon
n.com __ -Original Message- From: osg-users-boun...@lists.openscenegraph.org [mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Steven Powers Sent: Tuesday, March 10, 2009 2:50 PM To: osg-users@lists.openscenegraph.org Subject: Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer sliceVPX and sli

Re: [osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-10 Thread Steven Powers
sliceVPX and sliceVPY are the viewport dimensions. -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=8186#8186 ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegraph.or

[osg-users] GL_RGBA32F_ARB Pixel Buffer

2009-03-10 Thread Steven Powers
I'm getting all 0s for my pixel buffer when I use GL_RGBA32F_ARB as the pixel format. It works fine with GL_RGBA. This is how I set it up: i = new osg::Image(); i->setPixelFormat(GL_RGBA32F_ARB); i->setDataType(GL_FLOAT); camera->att