2006-07-18 23:21:48 +08:00
|
|
|
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
2003-01-22 00:45:36 +08:00
|
|
|
*
|
|
|
|
* This library is open source and may be redistributed and/or modified under
|
|
|
|
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
|
|
|
* (at your option) any later version. The full license is in LICENSE file
|
|
|
|
* included with this distribution, and on the openscenegraph.org website.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* OpenSceneGraph Public License for more details.
|
|
|
|
*/
|
2002-04-04 01:42:12 +08:00
|
|
|
#include <stdio.h>
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
#include <osg/Notify>
|
2005-08-17 18:12:49 +08:00
|
|
|
#include <osg/Texture1D>
|
|
|
|
#include <osg/Texture2D>
|
|
|
|
#include <osg/Texture3D>
|
|
|
|
#include <osg/TextureRectangle>
|
|
|
|
#include <osg/TextureCubeMap>
|
2005-11-01 18:42:54 +08:00
|
|
|
#include <osg/GLExtensions>
|
2006-05-23 03:30:07 +08:00
|
|
|
#include <osg/GLU>
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2003-07-15 21:46:19 +08:00
|
|
|
#include <osgUtil/Statistics>
|
2001-09-22 10:42:08 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
#include <osgUtil/RenderStage>
|
|
|
|
|
2002-07-18 22:20:01 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
using namespace osg;
|
|
|
|
using namespace osgUtil;
|
|
|
|
|
|
|
|
// register a RenderStage prototype with the RenderBin prototype list.
|
|
|
|
//RegisterRenderBinProxy<RenderStage> s_registerRenderStageProxy;
|
|
|
|
|
2005-05-24 23:34:23 +08:00
|
|
|
RenderStage::RenderStage():
|
|
|
|
RenderBin(getDefaultRenderBinSortMode())
|
|
|
|
{
|
|
|
|
// point RenderBin's _stage to this to ensure that references to
|
|
|
|
// stage don't go tempted away to any other stage.
|
|
|
|
_stage = this;
|
|
|
|
_stageDrawnThisFrame = false;
|
|
|
|
|
2005-08-17 18:12:49 +08:00
|
|
|
_drawBuffer = GL_NONE;
|
|
|
|
_readBuffer = GL_NONE;
|
2005-05-24 23:34:23 +08:00
|
|
|
_clearMask = GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT;
|
|
|
|
_clearColor.set(0.0f,0.0f,0.0f,0.0f);
|
|
|
|
_clearAccum.set(0.0f,0.0f,0.0f,0.0f);
|
|
|
|
_clearDepth = 1.0;
|
|
|
|
_clearStencil = 0;
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2005-12-09 17:38:46 +08:00
|
|
|
_cameraRequiresSetUp = false;
|
2005-08-17 18:12:49 +08:00
|
|
|
_camera = 0;
|
|
|
|
|
|
|
|
_level = 0;
|
|
|
|
_face = 0;
|
|
|
|
|
|
|
|
_imageReadPixelFormat = GL_RGBA;
|
|
|
|
_imageReadPixelDataType = GL_UNSIGNED_BYTE;
|
2005-05-24 23:34:23 +08:00
|
|
|
}
|
|
|
|
|
2002-09-17 23:47:23 +08:00
|
|
|
RenderStage::RenderStage(SortMode mode):
|
|
|
|
RenderBin(mode)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
|
|
|
// point RenderBin's _stage to this to ensure that references to
|
|
|
|
// stage don't go tempted away to any other stage.
|
|
|
|
_stage = this;
|
|
|
|
_stageDrawnThisFrame = false;
|
|
|
|
|
2005-08-17 18:12:49 +08:00
|
|
|
_drawBuffer = GL_NONE;
|
|
|
|
_readBuffer = GL_NONE;
|
2001-09-20 05:19:47 +08:00
|
|
|
_clearMask = GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT;
|
|
|
|
_clearColor.set(0.0f,0.0f,0.0f,0.0f);
|
|
|
|
_clearAccum.set(0.0f,0.0f,0.0f,0.0f);
|
|
|
|
_clearDepth = 1.0;
|
|
|
|
_clearStencil = 0;
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2005-12-09 17:38:46 +08:00
|
|
|
_cameraRequiresSetUp = false;
|
2005-08-17 18:12:49 +08:00
|
|
|
_camera = 0;
|
|
|
|
|
|
|
|
_level = 0;
|
|
|
|
_face = 0;
|
|
|
|
|
|
|
|
_imageReadPixelFormat = GL_RGBA;
|
|
|
|
_imageReadPixelDataType = GL_UNSIGNED_BYTE;
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
2002-09-17 23:47:23 +08:00
|
|
|
RenderStage::RenderStage(const RenderStage& rhs,const osg::CopyOp& copyop):
|
|
|
|
RenderBin(rhs,copyop),
|
|
|
|
_stageDrawnThisFrame(false),
|
2005-06-15 04:51:35 +08:00
|
|
|
_preRenderList(rhs._preRenderList),
|
|
|
|
_postRenderList(rhs._postRenderList),
|
2002-09-17 23:47:23 +08:00
|
|
|
_viewport(rhs._viewport),
|
2005-08-17 18:12:49 +08:00
|
|
|
_drawBuffer(rhs._drawBuffer),
|
|
|
|
_readBuffer(rhs._readBuffer),
|
2008-04-03 01:08:40 +08:00
|
|
|
_drawBuffers(rhs._drawBuffers),
|
2002-09-17 23:47:23 +08:00
|
|
|
_clearMask(rhs._clearMask),
|
|
|
|
_colorMask(rhs._colorMask),
|
|
|
|
_clearColor(rhs._clearColor),
|
|
|
|
_clearAccum(rhs._clearAccum),
|
|
|
|
_clearDepth(rhs._clearDepth),
|
|
|
|
_clearStencil(rhs._clearStencil),
|
2005-12-09 17:38:46 +08:00
|
|
|
_cameraRequiresSetUp(rhs._cameraRequiresSetUp),
|
2005-08-17 18:12:49 +08:00
|
|
|
_camera(rhs._camera),
|
|
|
|
_level(rhs._level),
|
|
|
|
_face(rhs._face),
|
|
|
|
_imageReadPixelFormat(rhs._imageReadPixelFormat),
|
|
|
|
_imageReadPixelDataType(rhs._imageReadPixelDataType),
|
2002-09-17 23:47:23 +08:00
|
|
|
_renderStageLighting(rhs._renderStageLighting)
|
|
|
|
{
|
2002-09-19 17:05:50 +08:00
|
|
|
_stage = this;
|
2002-09-17 23:47:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
RenderStage::~RenderStage()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void RenderStage::reset()
|
|
|
|
{
|
|
|
|
_stageDrawnThisFrame = false;
|
|
|
|
|
|
|
|
if (_renderStageLighting.valid()) _renderStageLighting->reset();
|
|
|
|
|
2005-11-08 19:46:52 +08:00
|
|
|
for(RenderStageList::iterator pre_itr = _preRenderList.begin();
|
|
|
|
pre_itr != _preRenderList.end();
|
|
|
|
++pre_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
pre_itr->second->reset();
|
2005-11-08 19:46:52 +08:00
|
|
|
}
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
RenderBin::reset();
|
2005-11-08 19:46:52 +08:00
|
|
|
|
|
|
|
for(RenderStageList::iterator post_itr = _postRenderList.begin();
|
|
|
|
post_itr != _postRenderList.end();
|
|
|
|
++post_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
post_itr->second->reset();
|
2005-11-08 19:46:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_preRenderList.clear();
|
|
|
|
_postRenderList.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RenderStage::sort()
|
|
|
|
{
|
|
|
|
for(RenderStageList::iterator pre_itr = _preRenderList.begin();
|
|
|
|
pre_itr != _preRenderList.end();
|
|
|
|
++pre_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
pre_itr->second->sort();
|
2005-11-08 19:46:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
RenderBin::sort();
|
|
|
|
|
|
|
|
for(RenderStageList::iterator post_itr = _postRenderList.begin();
|
|
|
|
post_itr != _postRenderList.end();
|
|
|
|
++post_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
post_itr->second->sort();
|
2005-11-08 19:46:52 +08:00
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
|
|
|
|
2006-09-04 21:15:08 +08:00
|
|
|
void RenderStage::addPreRenderStage(RenderStage* rs, int order)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
if (rs)
|
|
|
|
{
|
|
|
|
RenderStageList::iterator itr;
|
|
|
|
for(itr = _preRenderList.begin(); itr != _preRenderList.end(); ++itr) {
|
|
|
|
if(order < itr->first) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(itr == _preRenderList.end()) {
|
|
|
|
_preRenderList.push_back(RenderStageOrderPair(order,rs));
|
|
|
|
} else {
|
|
|
|
_preRenderList.insert(itr,RenderStageOrderPair(order,rs));
|
|
|
|
}
|
|
|
|
}
|
2005-06-15 04:51:35 +08:00
|
|
|
}
|
|
|
|
|
2006-09-04 21:15:08 +08:00
|
|
|
void RenderStage::addPostRenderStage(RenderStage* rs, int order)
|
2005-06-15 04:51:35 +08:00
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
if (rs)
|
|
|
|
{
|
|
|
|
RenderStageList::iterator itr;
|
|
|
|
for(itr = _postRenderList.begin(); itr != _postRenderList.end(); ++itr) {
|
|
|
|
if(order < itr->first) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(itr == _postRenderList.end()) {
|
|
|
|
_postRenderList.push_back(RenderStageOrderPair(order,rs));
|
|
|
|
} else {
|
|
|
|
_postRenderList.insert(itr,RenderStageOrderPair(order,rs));
|
|
|
|
}
|
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
2002-04-22 17:37:17 +08:00
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::drawPreRenderStages(osg::RenderInfo& renderInfo,RenderLeaf*& previous)
|
2002-09-19 17:52:50 +08:00
|
|
|
{
|
2005-06-15 04:51:35 +08:00
|
|
|
if (_preRenderList.empty()) return;
|
2003-01-24 17:11:05 +08:00
|
|
|
|
|
|
|
//cout << "Drawing prerendering stages "<<this<< " "<<_viewport->x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<<std::endl;
|
2005-06-15 04:51:35 +08:00
|
|
|
for(RenderStageList::iterator itr=_preRenderList.begin();
|
|
|
|
itr!=_preRenderList.end();
|
2002-09-19 17:52:50 +08:00
|
|
|
++itr)
|
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
itr->second->draw(renderInfo,previous);
|
2002-09-19 17:52:50 +08:00
|
|
|
}
|
2003-01-24 17:11:05 +08:00
|
|
|
//cout << "Done Drawing prerendering stages "<<this<< " "<<_viewport->x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<<std::endl;
|
2002-09-19 17:52:50 +08:00
|
|
|
}
|
|
|
|
|
2005-10-06 00:21:51 +08:00
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::runCameraSetUp(osg::RenderInfo& renderInfo)
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
|
|
|
_cameraRequiresSetUp = false;
|
|
|
|
|
|
|
|
if (!_camera) return;
|
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
osg::State& state = *renderInfo.getState();
|
2006-09-19 04:54:48 +08:00
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
osg::Camera::RenderTargetImplementation renderTargetImplementation = _camera->getRenderTargetImplementation();
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera::RenderTargetImplementation renderTargetFallback = _camera->getRenderTargetFallback();
|
2005-10-06 00:21:51 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
osg::Camera::BufferAttachmentMap& bufferAttachments = _camera->getBufferAttachmentMap();
|
2005-10-06 19:26:07 +08:00
|
|
|
|
2006-08-03 23:57:39 +08:00
|
|
|
// compute the required dimensions
|
2007-01-05 00:48:23 +08:00
|
|
|
int width = static_cast<int>(_viewport->x() + _viewport->width());
|
|
|
|
int height = static_cast<int>(_viewport->y() + _viewport->height());
|
2006-08-03 23:57:39 +08:00
|
|
|
int depth = 1;
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera::BufferAttachmentMap::iterator itr;
|
2007-12-11 01:30:18 +08:00
|
|
|
for(itr = bufferAttachments.begin();
|
|
|
|
itr != bufferAttachments.end();
|
2006-08-03 23:57:39 +08:00
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
width = osg::maximum(width,itr->second.width());
|
|
|
|
height = osg::maximum(height,itr->second.height());
|
|
|
|
depth = osg::maximum(depth,itr->second.depth());
|
|
|
|
}
|
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<"RenderStage::runCameraSetUp viewport "<<_viewport->x()<<" "<<_viewport->y()<<" "<<_viewport->width()<<" "<<_viewport->height()<<std::endl;
|
|
|
|
// osg::notify(osg::NOTICE)<<"RenderStage::runCameraSetUp computed "<<width<<" "<<height<<" "<<depth<<std::endl;
|
|
|
|
|
2008-04-03 01:08:40 +08:00
|
|
|
// attach images that need to be copied after the stage is drawn.
|
2007-12-11 01:30:18 +08:00
|
|
|
for(itr = bufferAttachments.begin();
|
|
|
|
itr != bufferAttachments.end();
|
2005-10-06 00:21:51 +08:00
|
|
|
++itr)
|
|
|
|
{
|
2005-11-01 23:23:03 +08:00
|
|
|
// if one exist attach image to the RenderStage.
|
|
|
|
if (itr->second._image.valid())
|
|
|
|
{
|
|
|
|
osg::Image* image = itr->second._image.get();
|
|
|
|
GLenum pixelFormat = image->getPixelFormat();
|
|
|
|
GLenum dataType = image->getDataType();
|
|
|
|
|
|
|
|
if (image->data()==0)
|
|
|
|
{
|
|
|
|
if (pixelFormat==0) pixelFormat = itr->second._internalFormat;
|
|
|
|
if (pixelFormat==0) pixelFormat = _imageReadPixelFormat;
|
|
|
|
if (pixelFormat==0) pixelFormat = GL_RGBA;
|
|
|
|
|
|
|
|
if (dataType==0) dataType = _imageReadPixelDataType;
|
|
|
|
if (dataType==0) dataType = GL_UNSIGNED_BYTE;
|
|
|
|
}
|
|
|
|
|
2006-11-27 19:25:40 +08:00
|
|
|
_bufferAttachmentMap[itr->first]._imageReadPixelFormat = pixelFormat;
|
|
|
|
_bufferAttachmentMap[itr->first]._imageReadPixelDataType = dataType;
|
|
|
|
_bufferAttachmentMap[itr->first]._image = image;
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (itr->second._texture.valid())
|
|
|
|
{
|
|
|
|
osg::Texture* texture = itr->second._texture.get();
|
|
|
|
osg::Texture1D* texture1D = 0;
|
|
|
|
osg::Texture2D* texture2D = 0;
|
|
|
|
osg::Texture3D* texture3D = 0;
|
|
|
|
osg::TextureCubeMap* textureCubeMap = 0;
|
|
|
|
osg::TextureRectangle* textureRectangle = 0;
|
|
|
|
if (0 != (texture1D=dynamic_cast<osg::Texture1D*>(texture)))
|
|
|
|
{
|
|
|
|
if (texture1D->getTextureWidth()==0)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
texture1D->setTextureWidth(width);
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (0 != (texture2D = dynamic_cast<osg::Texture2D*>(texture)))
|
|
|
|
{
|
|
|
|
if (texture2D->getTextureWidth()==0 || texture2D->getTextureHeight()==0)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
texture2D->setTextureSize(width,height);
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (0 != (texture3D = dynamic_cast<osg::Texture3D*>(texture)))
|
|
|
|
{
|
|
|
|
if (texture3D->getTextureWidth()==0 || texture3D->getTextureHeight()==0 || texture3D->getTextureDepth()==0 )
|
|
|
|
{
|
|
|
|
// note we dont' have the depth here, so we'll heave to assume that height and depth are the same..
|
2006-08-03 23:57:39 +08:00
|
|
|
texture3D->setTextureSize(width,height,height);
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (0 != (textureCubeMap = dynamic_cast<osg::TextureCubeMap*>(texture)))
|
|
|
|
{
|
|
|
|
if (textureCubeMap->getTextureWidth()==0 || textureCubeMap->getTextureHeight()==0)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
textureCubeMap->setTextureSize(width,height);
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (0 != (textureRectangle = dynamic_cast<osg::TextureRectangle*>(texture)))
|
|
|
|
{
|
|
|
|
if (textureRectangle->getTextureWidth()==0 || textureRectangle->getTextureHeight()==0)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
textureRectangle->setTextureSize(width,height);
|
2005-11-04 20:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-01 23:23:03 +08:00
|
|
|
}
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
2005-10-06 19:26:07 +08:00
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::FRAME_BUFFER_OBJECT)
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2006-01-03 18:44:14 +08:00
|
|
|
osg::FBOExtensions* fbo_ext = osg::FBOExtensions::instance(state.getContextID(),true);
|
2005-10-06 00:21:51 +08:00
|
|
|
bool fbo_supported = fbo_ext && fbo_ext->isSupported();
|
2005-11-24 23:18:12 +08:00
|
|
|
|
|
|
|
if (fbo_supported && !_fbo)
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::notify(osg::INFO)<<"Setting up osg::Camera::FRAME_BUFFER_OBJECT"<<std::endl;
|
2005-11-01 18:42:54 +08:00
|
|
|
|
2005-11-24 00:32:55 +08:00
|
|
|
OpenThreads::ScopedLock<OpenThreads::Mutex> lock(*(_camera->getDataChangeMutex()));
|
2005-11-23 21:44:27 +08:00
|
|
|
|
2005-11-24 23:18:12 +08:00
|
|
|
osg::ref_ptr<osg::FrameBufferObject> fbo = new osg::FrameBufferObject;
|
2005-10-06 00:21:51 +08:00
|
|
|
|
|
|
|
bool colorAttached = false;
|
|
|
|
bool depthAttached = false;
|
|
|
|
bool stencilAttached = false;
|
2008-04-03 01:08:40 +08:00
|
|
|
_drawBuffers.clear(); // MRT buffers
|
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
for(osg::Camera::BufferAttachmentMap::iterator itr = bufferAttachments.begin();
|
|
|
|
itr != bufferAttachments.end();
|
2005-10-06 00:21:51 +08:00
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera::BufferComponent buffer = itr->first;
|
|
|
|
osg::Camera::Attachment& attachment = itr->second;
|
2005-11-01 23:23:03 +08:00
|
|
|
|
2005-10-06 00:21:51 +08:00
|
|
|
switch(buffer)
|
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
case(osg::Camera::DEPTH_BUFFER):
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2005-11-24 23:18:12 +08:00
|
|
|
fbo->setAttachment(GL_DEPTH_ATTACHMENT_EXT, osg::FrameBufferAttachment(attachment));
|
2005-10-06 00:21:51 +08:00
|
|
|
depthAttached = true;
|
|
|
|
break;
|
|
|
|
}
|
2006-11-27 22:52:07 +08:00
|
|
|
case(osg::Camera::STENCIL_BUFFER):
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2005-11-24 23:18:12 +08:00
|
|
|
fbo->setAttachment(GL_STENCIL_ATTACHMENT_EXT, osg::FrameBufferAttachment(attachment));
|
2005-10-06 00:21:51 +08:00
|
|
|
stencilAttached = true;
|
|
|
|
break;
|
|
|
|
}
|
2008-04-02 21:55:50 +08:00
|
|
|
case(osg::Camera::COLOR_BUFFER):
|
|
|
|
{
|
|
|
|
fbo->setAttachment(GL_COLOR_ATTACHMENT0_EXT, osg::FrameBufferAttachment(attachment));
|
|
|
|
colorAttached = true;
|
|
|
|
break;
|
|
|
|
}
|
2005-10-06 00:21:51 +08:00
|
|
|
default:
|
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
fbo->setAttachment(GL_COLOR_ATTACHMENT0_EXT+(buffer-osg::Camera::COLOR_BUFFER0), osg::FrameBufferAttachment(attachment));
|
2005-10-06 00:21:51 +08:00
|
|
|
colorAttached = true;
|
2008-04-03 01:08:40 +08:00
|
|
|
|
|
|
|
// append to MRT buffer list
|
|
|
|
_drawBuffers.push_back(GL_COLOR_ATTACHMENT0_EXT+(buffer-osg::Camera::COLOR_BUFFER0));
|
2005-10-06 00:21:51 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!depthAttached)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
fbo->setAttachment(GL_DEPTH_ATTACHMENT_EXT, osg::FrameBufferAttachment(new osg::RenderBuffer(width, height, GL_DEPTH_COMPONENT24)));
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!colorAttached)
|
|
|
|
{
|
2006-08-03 23:57:39 +08:00
|
|
|
fbo->setAttachment(GL_COLOR_ATTACHMENT0_EXT, osg::FrameBufferAttachment(new osg::RenderBuffer(width, height, GL_RGB)));
|
2005-11-24 23:18:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
fbo->apply(state);
|
|
|
|
|
|
|
|
GLenum status = fbo_ext->glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
|
|
|
|
|
|
|
|
if (status != GL_FRAMEBUFFER_COMPLETE_EXT)
|
|
|
|
{
|
|
|
|
osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(), FBO setup failed, FBO status= 0x"<<std::hex<<status<<std::endl;
|
|
|
|
|
|
|
|
fbo_supported = false;
|
|
|
|
fbo_ext->glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
|
|
|
|
fbo = 0;
|
2008-04-03 01:08:40 +08:00
|
|
|
_drawBuffers.clear();
|
2005-11-24 23:18:12 +08:00
|
|
|
|
|
|
|
// clean up.
|
|
|
|
double availableTime = 100.0f;
|
|
|
|
double currentTime = state.getFrameStamp()?state.getFrameStamp()->getReferenceTime():0.0;
|
|
|
|
osg::RenderBuffer::flushDeletedRenderBuffers(state.getContextID(),currentTime,availableTime);
|
|
|
|
osg::FrameBufferObject::flushDeletedFrameBufferObjects(state.getContextID(),currentTime,availableTime);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setDrawBuffer(GL_NONE);
|
|
|
|
setReadBuffer(GL_NONE);
|
2008-04-03 01:08:40 +08:00
|
|
|
|
2005-11-24 23:18:12 +08:00
|
|
|
_fbo = fbo;
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
2005-11-24 23:18:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!fbo_supported)
|
|
|
|
{
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation<renderTargetFallback)
|
|
|
|
renderTargetImplementation = renderTargetFallback;
|
2005-11-24 23:18:12 +08:00
|
|
|
else
|
2008-04-02 19:28:10 +08:00
|
|
|
renderTargetImplementation = osg::Camera::PIXEL_BUFFER_RTT;
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-01 18:42:54 +08:00
|
|
|
// check whether PBuffer-RTT is supported or not
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT &&
|
2006-01-18 19:45:58 +08:00
|
|
|
!osg::isGLExtensionSupported(state.getContextID(), "WGL_ARB_render_texture"))
|
2005-11-01 18:42:54 +08:00
|
|
|
{
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation<renderTargetFallback)
|
|
|
|
renderTargetImplementation = renderTargetFallback;
|
2005-11-01 18:42:54 +08:00
|
|
|
else
|
2008-04-02 19:28:10 +08:00
|
|
|
renderTargetImplementation = osg::Camera::PIXEL_BUFFER;
|
2005-11-01 18:42:54 +08:00
|
|
|
}
|
2005-10-06 19:26:07 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
// if any of the renderTargetImplementations require a separate graphics context such as with pbuffer try in turn to
|
2005-10-06 19:26:07 +08:00
|
|
|
// set up, but if each level fails then resort to the next level down.
|
|
|
|
while (!getGraphicsContext() &&
|
2008-04-02 19:28:10 +08:00
|
|
|
(renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT ||
|
|
|
|
renderTargetImplementation==osg::Camera::PIXEL_BUFFER ||
|
|
|
|
renderTargetImplementation==osg::Camera::SEPERATE_WINDOW) )
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::GraphicsContext> context = getGraphicsContext();
|
|
|
|
if (!context)
|
|
|
|
{
|
|
|
|
|
|
|
|
// set up the traits of the graphics context that we want
|
|
|
|
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
|
|
|
|
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->width = width;
|
|
|
|
traits->height = height;
|
2006-08-03 23:57:39 +08:00
|
|
|
|
2006-12-23 05:53:44 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"traits = "<<traits->width<<" "<<traits->height<<std::endl;
|
2006-08-03 23:57:39 +08:00
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
traits->pbuffer = (renderTargetImplementation==osg::Camera::PIXEL_BUFFER || renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT);
|
|
|
|
traits->windowDecoration = (renderTargetImplementation==osg::Camera::SEPERATE_WINDOW);
|
|
|
|
traits->doubleBuffer = (renderTargetImplementation==osg::Camera::SEPERATE_WINDOW);
|
2005-10-06 00:21:51 +08:00
|
|
|
|
2005-10-06 19:26:07 +08:00
|
|
|
osg::Texture* pBufferTexture = 0;
|
2005-10-06 00:21:51 +08:00
|
|
|
GLenum bufferFormat = GL_NONE;
|
2005-10-06 19:26:07 +08:00
|
|
|
unsigned int level = 0;
|
|
|
|
unsigned int face = 0;
|
2005-10-06 00:21:51 +08:00
|
|
|
|
|
|
|
bool colorAttached = false;
|
|
|
|
bool depthAttached = false;
|
|
|
|
bool stencilAttached = false;
|
2007-12-11 01:30:18 +08:00
|
|
|
for(osg::Camera::BufferAttachmentMap::iterator itr = bufferAttachments.begin();
|
|
|
|
itr != bufferAttachments.end();
|
2005-10-06 00:21:51 +08:00
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::Camera::BufferComponent buffer = itr->first;
|
|
|
|
osg::Camera::Attachment& attachment = itr->second;
|
2005-10-06 00:21:51 +08:00
|
|
|
switch(buffer)
|
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
case(osg::Camera::DEPTH_BUFFER):
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->depth = 24;
|
2005-10-06 00:21:51 +08:00
|
|
|
depthAttached = true;
|
|
|
|
break;
|
|
|
|
}
|
2006-11-27 22:52:07 +08:00
|
|
|
case(osg::Camera::STENCIL_BUFFER):
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->stencil = 8;
|
2005-10-06 00:21:51 +08:00
|
|
|
stencilAttached = true;
|
|
|
|
break;
|
|
|
|
}
|
2006-11-27 22:52:07 +08:00
|
|
|
case(osg::Camera::COLOR_BUFFER):
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
|
|
|
if (attachment._internalFormat!=GL_NONE)
|
|
|
|
{
|
|
|
|
bufferFormat = attachment._internalFormat;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (attachment._texture.valid())
|
|
|
|
{
|
|
|
|
pBufferTexture = attachment._texture.get();
|
|
|
|
bufferFormat = attachment._texture->getInternalFormat();
|
|
|
|
}
|
|
|
|
else if (attachment._image.valid())
|
|
|
|
{
|
|
|
|
bufferFormat = attachment._image->getInternalTextureFormat();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bufferFormat = GL_RGBA;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-06 19:26:07 +08:00
|
|
|
level = attachment._level;
|
|
|
|
face = attachment._face;
|
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT)
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2007-06-27 17:44:35 +08:00
|
|
|
traits->target = attachment._texture.valid() ? attachment._texture->getTextureTarget() : 0;
|
2007-06-27 18:12:10 +08:00
|
|
|
traits->format = bufferFormat;
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->level = level;
|
|
|
|
traits->face = face;
|
|
|
|
traits->mipMapGeneration = attachment._mipMapGeneration;
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::SEPERATE_WINDOW)
|
2005-10-06 19:26:07 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Warning: RenderStage::runCameraSetUp(State&) Window ";
|
2005-10-06 00:21:51 +08:00
|
|
|
else
|
2005-10-06 19:26:07 +08:00
|
|
|
osg::notify(osg::NOTICE)<<"Warning: RenderStage::runCameraSetUp(State&) Pbuffer ";
|
2005-10-06 00:21:51 +08:00
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)<<"does not support multiple color outputs."<<std::endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!depthAttached)
|
|
|
|
{
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->depth = 24;
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!colorAttached)
|
|
|
|
{
|
|
|
|
if (bufferFormat == GL_NONE) bufferFormat = GL_RGB;
|
|
|
|
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->red = 8;
|
|
|
|
traits->green = 8;
|
|
|
|
traits->blue = 8;
|
|
|
|
traits->alpha = (bufferFormat==GL_RGBA) ? 8 : 0;
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// share OpenGL objects if possible...
|
|
|
|
if (state.getGraphicsContext())
|
|
|
|
{
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->sharedContext = state.getGraphicsContext();
|
2006-08-11 19:05:09 +08:00
|
|
|
|
2006-12-23 05:53:44 +08:00
|
|
|
const osg::GraphicsContext::Traits* sharedTraits = traits->sharedContext->getTraits();
|
2006-08-11 19:05:09 +08:00
|
|
|
if (sharedTraits)
|
|
|
|
{
|
2006-12-23 05:53:44 +08:00
|
|
|
traits->hostName = sharedTraits->hostName;
|
|
|
|
traits->displayNum = sharedTraits->displayNum;
|
|
|
|
traits->screenNum = sharedTraits->screenNum;
|
2006-08-11 19:05:09 +08:00
|
|
|
}
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// create the graphics context according to these traits.
|
|
|
|
context = osg::GraphicsContext::createGraphicsContext(traits.get());
|
|
|
|
|
2005-10-06 23:41:47 +08:00
|
|
|
if (context.valid() && context->realize())
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2005-10-06 23:41:47 +08:00
|
|
|
osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(State&) Context has been realized "<<std::endl;
|
|
|
|
|
2005-10-06 19:26:07 +08:00
|
|
|
// successfully set up graphics context as requested,
|
|
|
|
// will assign this graphics context to the RenderStage and
|
|
|
|
// associated parameters. Setting the graphics context will
|
|
|
|
// single this while loop to exit successful.
|
|
|
|
setGraphicsContext(context.get());
|
|
|
|
|
|
|
|
// how to do we detect that an attempt to set up RTT has failed??
|
|
|
|
|
|
|
|
setDrawBuffer(GL_FRONT);
|
|
|
|
setReadBuffer(GL_FRONT);
|
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
if (pBufferTexture && renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT)
|
2005-10-06 19:26:07 +08:00
|
|
|
{
|
|
|
|
osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(State&) Assign graphis context to Texture"<<std::endl;
|
|
|
|
pBufferTexture->setReadPBuffer(context.get());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(State&) Assigning texture to RenderStage so that it does the copy"<<std::endl;
|
|
|
|
setTexture(pBufferTexture, level, face);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2005-10-06 00:21:51 +08:00
|
|
|
{
|
2007-12-11 01:30:18 +08:00
|
|
|
osg::notify(osg::INFO)<<"Failed to acquire Graphics Context"<<std::endl;
|
2005-10-06 19:26:07 +08:00
|
|
|
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT)
|
2005-10-06 19:26:07 +08:00
|
|
|
{
|
|
|
|
// fallback to using standard PBuffer, this will allow this while loop to continue
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation<renderTargetFallback)
|
|
|
|
renderTargetImplementation = renderTargetFallback;
|
2005-11-01 18:42:54 +08:00
|
|
|
else
|
2008-04-02 19:28:10 +08:00
|
|
|
renderTargetImplementation = osg::Camera::PIXEL_BUFFER;
|
2005-10-06 19:26:07 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-02 19:28:10 +08:00
|
|
|
renderTargetImplementation = osg::Camera::FRAME_BUFFER;
|
2005-10-06 19:26:07 +08:00
|
|
|
}
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-06 19:26:07 +08:00
|
|
|
// finally if all else has failed, then the frame buffer fallback will come in to play.
|
2008-04-02 19:28:10 +08:00
|
|
|
if (renderTargetImplementation==osg::Camera::FRAME_BUFFER)
|
2005-10-06 19:26:07 +08:00
|
|
|
{
|
2006-11-27 22:52:07 +08:00
|
|
|
osg::notify(osg::INFO)<<"Setting up osg::Camera::FRAME_BUFFER"<<std::endl;
|
2005-10-06 19:26:07 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
for(osg::Camera::BufferAttachmentMap::iterator itr = bufferAttachments.begin();
|
|
|
|
itr != bufferAttachments.end();
|
2005-10-06 19:26:07 +08:00
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
// assign the texture...
|
|
|
|
if (itr->second._texture.valid()) setTexture(itr->second._texture.get(), itr->second._level, itr->second._face);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::copyTexture(osg::RenderInfo& renderInfo)
|
2002-10-17 21:48:46 +08:00
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
osg::State& state = *renderInfo.getState();
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
if (_readBuffer != GL_NONE)
|
|
|
|
{
|
|
|
|
glReadBuffer(_readBuffer);
|
|
|
|
}
|
2003-01-24 17:11:05 +08:00
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
// need to implement texture cube map etc...
|
|
|
|
osg::Texture1D* texture1D = 0;
|
|
|
|
osg::Texture2D* texture2D = 0;
|
|
|
|
osg::Texture3D* texture3D = 0;
|
|
|
|
osg::TextureRectangle* textureRec = 0;
|
|
|
|
osg::TextureCubeMap* textureCubeMap = 0;
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2006-08-03 23:57:39 +08:00
|
|
|
// use TexCopySubImage with the offset of the viewport into the texture
|
|
|
|
// note, this path mirrors the pbuffer and fbo means for updating the texture.
|
|
|
|
// Robert Osfield, 3rd August 2006.
|
|
|
|
if ((texture2D = dynamic_cast<osg::Texture2D*>(_texture.get())) != 0)
|
|
|
|
{
|
2007-01-05 00:48:23 +08:00
|
|
|
texture2D->copyTexSubImage2D(state,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()));
|
2006-08-03 23:57:39 +08:00
|
|
|
}
|
|
|
|
else if ((textureRec = dynamic_cast<osg::TextureRectangle*>(_texture.get())) != 0)
|
|
|
|
{
|
2007-01-05 00:48:23 +08:00
|
|
|
textureRec->copyTexSubImage2D(state,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()));
|
2006-08-03 23:57:39 +08:00
|
|
|
}
|
|
|
|
else if ((texture1D = dynamic_cast<osg::Texture1D*>(_texture.get())) != 0)
|
|
|
|
{
|
|
|
|
// need to implement
|
2007-01-05 00:48:23 +08:00
|
|
|
texture1D->copyTexSubImage1D(state,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()));
|
2006-08-03 23:57:39 +08:00
|
|
|
}
|
|
|
|
else if ((texture3D = dynamic_cast<osg::Texture3D*>(_texture.get())) != 0)
|
|
|
|
{
|
|
|
|
// need to implement
|
2007-01-05 00:48:23 +08:00
|
|
|
texture3D->copyTexSubImage3D(state,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
_face,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()));
|
2006-08-03 23:57:39 +08:00
|
|
|
}
|
|
|
|
else if ((textureCubeMap = dynamic_cast<osg::TextureCubeMap*>(_texture.get())) != 0)
|
|
|
|
{
|
|
|
|
// need to implement
|
2007-01-05 00:48:23 +08:00
|
|
|
textureCubeMap->copyTexSubImageCubeMap(state, _face,
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()));
|
2006-08-03 23:57:39 +08:00
|
|
|
}
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::drawInner(osg::RenderInfo& renderInfo,RenderLeaf*& previous, bool& doCopyTexture)
|
2005-08-20 16:59:03 +08:00
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
osg::State& state = *renderInfo.getState();
|
|
|
|
|
2008-04-03 01:08:40 +08:00
|
|
|
bool using_multiple_render_targets = !(_drawBuffers.empty());
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2008-04-03 01:08:40 +08:00
|
|
|
if (!using_multiple_render_targets)
|
2005-08-17 18:12:49 +08:00
|
|
|
{
|
2008-04-03 01:08:40 +08:00
|
|
|
if (_drawBuffer != GL_NONE)
|
|
|
|
{
|
|
|
|
glDrawBuffer(_drawBuffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_readBuffer != GL_NONE)
|
|
|
|
{
|
|
|
|
glReadBuffer(_readBuffer);
|
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
}
|
|
|
|
|
2006-01-03 18:44:14 +08:00
|
|
|
osg::FBOExtensions* fbo_ext = _fbo.valid() ? osg::FBOExtensions::instance(state.getContextID(),true) : 0;
|
2005-08-17 18:12:49 +08:00
|
|
|
bool fbo_supported = fbo_ext && fbo_ext->isSupported();
|
|
|
|
|
|
|
|
if (fbo_supported)
|
|
|
|
{
|
2005-08-20 16:59:03 +08:00
|
|
|
_fbo->apply(state);
|
2008-04-03 01:08:40 +08:00
|
|
|
|
|
|
|
if (using_multiple_render_targets)
|
|
|
|
{
|
|
|
|
GL2Extensions *gl2e = GL2Extensions::Get(state.getContextID(), true );
|
|
|
|
if (gl2e)
|
|
|
|
{
|
|
|
|
gl2e->glDrawBuffers(_drawBuffers.size(), &(_drawBuffers[0]));
|
|
|
|
}
|
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// do the drawing itself.
|
2006-09-19 04:54:48 +08:00
|
|
|
RenderBin::draw(renderInfo,previous);
|
2005-06-15 04:51:35 +08:00
|
|
|
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2006-05-09 17:47:26 +08:00
|
|
|
if(state.getCheckForGLErrors()!=osg::State::NEVER_CHECK_GL_ERRORS)
|
2005-11-05 03:00:49 +08:00
|
|
|
{
|
2006-05-09 17:47:26 +08:00
|
|
|
GLenum errorNo = glGetError();
|
|
|
|
if (errorNo!=GL_NO_ERROR)
|
|
|
|
{
|
2006-05-23 03:30:07 +08:00
|
|
|
const char* error = (char*)gluErrorString(errorNo);
|
|
|
|
if (error) osg::notify(osg::NOTICE)<<"Warning: detected OpenGL error '"<<error<<"' after RenderBin::draw(,)"<<std::endl;
|
|
|
|
else osg::notify(osg::NOTICE)<<"Warning: detected OpenGL errorNo= 0x"<<std::hex<<errorNo<<" after RenderBin::draw(,)"<<std::endl;
|
|
|
|
|
2006-05-09 17:47:26 +08:00
|
|
|
if (fbo_ext) osg::notify(osg::NOTICE)<<"RenderStage::drawInner(,) FBO status= 0x"<<std::hex<<fbo_ext->glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT)<<std::endl;
|
|
|
|
}
|
2005-11-05 03:00:49 +08:00
|
|
|
}
|
|
|
|
|
2005-08-17 18:12:49 +08:00
|
|
|
// now copy the rendered image to attached texture.
|
2005-08-20 16:59:03 +08:00
|
|
|
if (doCopyTexture)
|
2005-08-17 18:12:49 +08:00
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
copyTexture(renderInfo);
|
2005-08-17 18:12:49 +08:00
|
|
|
}
|
2007-02-16 23:14:16 +08:00
|
|
|
|
2006-11-27 22:52:07 +08:00
|
|
|
std::map< osg::Camera::BufferComponent, Attachment>::const_iterator itr;
|
2007-02-16 23:14:16 +08:00
|
|
|
for(itr = _bufferAttachmentMap.begin();
|
|
|
|
itr != _bufferAttachmentMap.end();
|
|
|
|
++itr)
|
|
|
|
{
|
2006-11-27 19:25:40 +08:00
|
|
|
if (itr->second._image.valid())
|
|
|
|
{
|
2008-04-03 01:08:40 +08:00
|
|
|
if (using_multiple_render_targets)
|
2006-11-27 19:25:40 +08:00
|
|
|
{
|
2008-04-03 01:08:40 +08:00
|
|
|
int attachment=itr->first;
|
|
|
|
if (attachment==osg::Camera::DEPTH_BUFFER || attachment==osg::Camera::STENCIL_BUFFER) {
|
|
|
|
// assume first buffer rendered to is the one we want
|
|
|
|
glReadBuffer(_drawBuffers[0]);
|
|
|
|
} else {
|
|
|
|
glReadBuffer(GL_COLOR_ATTACHMENT0_EXT + (attachment - osg::Camera::COLOR_BUFFER0));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_readBuffer != GL_NONE)
|
|
|
|
{
|
|
|
|
glReadBuffer(_readBuffer);
|
|
|
|
}
|
2006-11-27 19:25:40 +08:00
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
|
2006-11-27 19:25:40 +08:00
|
|
|
GLenum pixelFormat = itr->second._image->getPixelFormat();
|
2008-04-03 01:08:40 +08:00
|
|
|
if (pixelFormat==0) pixelFormat = _imageReadPixelFormat;
|
2006-11-27 19:25:40 +08:00
|
|
|
if (pixelFormat==0) pixelFormat = GL_RGB;
|
2005-11-01 23:23:03 +08:00
|
|
|
|
2006-11-27 19:25:40 +08:00
|
|
|
GLenum dataType = itr->second._image->getDataType();
|
|
|
|
if (dataType==0) dataType = _imageReadPixelDataType;
|
|
|
|
if (dataType==0) dataType = GL_UNSIGNED_BYTE;
|
2005-11-01 23:39:26 +08:00
|
|
|
|
2007-01-05 00:48:23 +08:00
|
|
|
itr->second._image->readPixels(static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()),
|
|
|
|
pixelFormat, dataType);
|
2006-11-27 19:25:40 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
if (fbo_supported)
|
|
|
|
{
|
|
|
|
// switch of the frame buffer object
|
|
|
|
fbo_ext->glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0);
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
doCopyTexture = true;
|
2005-08-17 18:12:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fbo_supported && _camera)
|
|
|
|
{
|
|
|
|
// now generate mipmaps if they are required.
|
2006-11-27 22:52:07 +08:00
|
|
|
const osg::Camera::BufferAttachmentMap& bufferAttachements = _camera->getBufferAttachmentMap();
|
|
|
|
for(osg::Camera::BufferAttachmentMap::const_iterator itr = bufferAttachements.begin();
|
2005-08-17 18:12:49 +08:00
|
|
|
itr != bufferAttachements.end();
|
|
|
|
++itr)
|
|
|
|
{
|
|
|
|
if (itr->second._texture.valid() && itr->second._mipMapGeneration)
|
|
|
|
{
|
2006-02-05 05:20:25 +08:00
|
|
|
state.setActiveTextureUnit(0);
|
|
|
|
state.applyTextureAttribute(0, itr->second._texture.get());
|
|
|
|
fbo_ext->glGenerateMipmapEXT(itr->second._texture->getTextureTarget());
|
2005-08-17 18:12:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
|
2007-02-03 06:30:36 +08:00
|
|
|
struct DrawInnerOperation : public osg::Operation
|
2005-08-20 16:59:03 +08:00
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
DrawInnerOperation(RenderStage* stage, osg::RenderInfo& renderInfo) :
|
2007-02-03 06:30:36 +08:00
|
|
|
osg::Operation("DrawInnerStage",false),
|
2006-09-19 04:54:48 +08:00
|
|
|
_stage(stage),
|
|
|
|
_renderInfo(renderInfo) {}
|
2005-08-20 16:59:03 +08:00
|
|
|
|
2007-02-03 06:30:36 +08:00
|
|
|
virtual void operator () (osg::Object* object)
|
2005-08-20 16:59:03 +08:00
|
|
|
{
|
2007-02-03 06:30:36 +08:00
|
|
|
osg::GraphicsContext* context = dynamic_cast<osg::GraphicsContext*>(object);
|
|
|
|
if (!context) return;
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<"DrawInnerOperation operator"<<std::endl;
|
|
|
|
if (_stage && context)
|
|
|
|
{
|
|
|
|
RenderLeaf* previous = 0;
|
|
|
|
bool doCopyTexture = false;
|
2006-09-19 04:54:48 +08:00
|
|
|
_renderInfo.setState(context->getState());
|
|
|
|
_stage->drawInner(_renderInfo, previous, doCopyTexture);
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RenderStage* _stage;
|
2006-09-19 04:54:48 +08:00
|
|
|
RenderInfo _renderInfo;
|
2005-08-20 16:59:03 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::draw(osg::RenderInfo& renderInfo,RenderLeaf*& previous)
|
2005-08-20 16:59:03 +08:00
|
|
|
{
|
|
|
|
if (_stageDrawnThisFrame) return;
|
|
|
|
|
2008-02-29 23:25:57 +08:00
|
|
|
// push the stages camera so that drawing code can query it
|
|
|
|
if (_camera) renderInfo.pushCamera(_camera);
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
_stageDrawnThisFrame = true;
|
|
|
|
|
2008-02-29 23:25:57 +08:00
|
|
|
if (_camera && _camera->getInitialDrawCallback())
|
|
|
|
{
|
|
|
|
// if we have a camera with a intial draw callback invoke it.
|
|
|
|
(*(_camera->getInitialDrawCallback()))(renderInfo);
|
|
|
|
}
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
// note, SceneView does call to drawPreRenderStages explicitly
|
|
|
|
// so there is no need to call it here.
|
2006-09-19 04:54:48 +08:00
|
|
|
drawPreRenderStages(renderInfo,previous);
|
2005-08-20 16:59:03 +08:00
|
|
|
|
2005-10-06 00:21:51 +08:00
|
|
|
if (_cameraRequiresSetUp)
|
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
runCameraSetUp(renderInfo);
|
2005-10-06 00:21:51 +08:00
|
|
|
}
|
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
osg::State& state = *renderInfo.getState();
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
osg::State* useState = &state;
|
|
|
|
osg::GraphicsContext* callingContext = state.getGraphicsContext();
|
|
|
|
osg::GraphicsContext* useContext = callingContext;
|
2007-07-12 23:54:45 +08:00
|
|
|
osg::OperationThread* useThread = 0;
|
2006-09-19 04:54:48 +08:00
|
|
|
osg::RenderInfo useRenderInfo(renderInfo);
|
2007-06-28 04:34:29 +08:00
|
|
|
|
|
|
|
RenderLeaf* saved_previous = previous;
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
if (_graphicsContext.valid() && _graphicsContext != callingContext)
|
|
|
|
{
|
|
|
|
// show we release the context so that others can use it?? will do so right
|
|
|
|
// now as an experiment.
|
|
|
|
callingContext->releaseContext();
|
|
|
|
|
2007-06-30 22:30:12 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<" enclosing state before - "<<state.getStateSetStackSize()<<std::endl;
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
useState = _graphicsContext->getState();
|
|
|
|
useContext = _graphicsContext.get();
|
|
|
|
useThread = useContext->getGraphicsThread();
|
2006-09-19 04:54:48 +08:00
|
|
|
useRenderInfo.setState(useState);
|
2005-08-20 16:59:03 +08:00
|
|
|
|
2007-12-11 01:30:18 +08:00
|
|
|
// synchronize the frame stamps
|
2006-04-17 21:25:33 +08:00
|
|
|
useState->setFrameStamp(const_cast<osg::FrameStamp*>(state.getFrameStamp()));
|
2007-02-15 22:47:06 +08:00
|
|
|
|
|
|
|
// map the DynamicObjectCount across to the new window
|
2007-02-15 04:44:17 +08:00
|
|
|
useState->setDynamicObjectCount(state.getDynamicObjectCount());
|
|
|
|
useState->setDynamicObjectRenderingCompletedCallback(state.getDynamicObjectRenderingCompletedCallback());
|
2006-04-17 21:25:33 +08:00
|
|
|
|
2007-06-28 04:34:29 +08:00
|
|
|
if (!useThread)
|
|
|
|
{
|
|
|
|
previous = 0;
|
|
|
|
useContext->makeCurrent();
|
2007-06-30 22:30:12 +08:00
|
|
|
|
|
|
|
// osg::notify(osg::NOTICE)<<" nested state before - "<<useState->getStateSetStackSize()<<std::endl;
|
2007-06-28 04:34:29 +08:00
|
|
|
}
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
2007-06-02 03:45:24 +08:00
|
|
|
|
2007-06-30 22:30:12 +08:00
|
|
|
unsigned int originalStackSize = useState->getStateSetStackSize();
|
|
|
|
|
2007-06-02 03:45:24 +08:00
|
|
|
if (_camera && _camera->getPreDrawCallback())
|
|
|
|
{
|
2008-02-29 23:25:57 +08:00
|
|
|
// if we have a camera with a pre draw callback invoke it.
|
|
|
|
(*(_camera->getPreDrawCallback()))(renderInfo);
|
2007-06-02 03:45:24 +08:00
|
|
|
}
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
bool doCopyTexture = _texture.valid() ?
|
|
|
|
(callingContext != useContext) :
|
|
|
|
false;
|
|
|
|
|
|
|
|
if (useThread)
|
|
|
|
{
|
2007-07-10 03:04:36 +08:00
|
|
|
#if 1
|
|
|
|
ref_ptr<osg::BlockAndFlushOperation> block = new osg::BlockAndFlushOperation;
|
|
|
|
|
|
|
|
useThread->add(new DrawInnerOperation( this, renderInfo ));
|
|
|
|
|
|
|
|
useThread->add(block.get());
|
|
|
|
|
|
|
|
// wait till the DrawInnerOperations is complete.
|
|
|
|
block->block();
|
|
|
|
|
|
|
|
doCopyTexture = false;
|
|
|
|
|
|
|
|
#else
|
2006-09-19 04:54:48 +08:00
|
|
|
useThread->add(new DrawInnerOperation( this, renderInfo ), true);
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
doCopyTexture = false;
|
2007-07-10 03:04:36 +08:00
|
|
|
#endif
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
drawInner( useRenderInfo, previous, doCopyTexture);
|
2006-11-28 19:10:15 +08:00
|
|
|
|
|
|
|
if (useRenderInfo.getUserData() != renderInfo.getUserData())
|
|
|
|
{
|
|
|
|
renderInfo.setUserData(useRenderInfo.getUserData());
|
|
|
|
}
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
|
2007-02-15 04:44:17 +08:00
|
|
|
if (useState != &state)
|
|
|
|
{
|
2007-02-15 22:47:06 +08:00
|
|
|
// reset the local State's DynamicObjectCount
|
2007-02-15 04:44:17 +08:00
|
|
|
state.setDynamicObjectCount(useState->getDynamicObjectCount());
|
|
|
|
useState->setDynamicObjectRenderingCompletedCallback(0);
|
|
|
|
}
|
|
|
|
|
2005-08-20 16:59:03 +08:00
|
|
|
|
|
|
|
// now copy the rendered image to attached texture.
|
|
|
|
if (_texture.valid() && !doCopyTexture)
|
|
|
|
{
|
|
|
|
if (callingContext && useContext!= callingContext)
|
|
|
|
{
|
|
|
|
// make the calling context use the pbuffer context for reading.
|
|
|
|
callingContext->makeContextCurrent(useContext);
|
|
|
|
}
|
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
copyTexture(renderInfo);
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_camera && _camera->getPostDrawCallback())
|
|
|
|
{
|
|
|
|
// if we have a camera with a post draw callback invoke it.
|
2008-02-29 23:25:57 +08:00
|
|
|
(*(_camera->getPostDrawCallback()))(renderInfo);
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_graphicsContext.valid() && _graphicsContext != callingContext)
|
|
|
|
{
|
2007-06-30 22:30:12 +08:00
|
|
|
useState->popStateSetStackToSize(originalStackSize);
|
|
|
|
|
2007-02-16 23:14:16 +08:00
|
|
|
if (!useThread)
|
|
|
|
{
|
2007-06-30 22:30:12 +08:00
|
|
|
|
|
|
|
|
2007-02-16 23:14:16 +08:00
|
|
|
// flush any command left in the useContex's FIFO
|
|
|
|
// to ensure that textures are updated before main thread commenses.
|
|
|
|
glFlush();
|
2007-06-30 22:30:12 +08:00
|
|
|
|
2007-02-16 23:14:16 +08:00
|
|
|
|
|
|
|
useContext->releaseContext();
|
|
|
|
}
|
2005-08-20 16:59:03 +08:00
|
|
|
}
|
2005-08-17 18:12:49 +08:00
|
|
|
|
|
|
|
if (callingContext && useContext != callingContext)
|
|
|
|
{
|
|
|
|
// restore the graphics context.
|
2007-06-28 04:34:29 +08:00
|
|
|
|
|
|
|
previous = saved_previous;
|
|
|
|
|
2007-06-30 22:30:12 +08:00
|
|
|
// osg::notify(osg::NOTICE)<<" nested state after - "<<useState->getStateSetStackSize()<<std::endl;
|
|
|
|
// osg::notify(osg::NOTICE)<<" enclosing state after - "<<state.getStateSetStackSize()<<std::endl;
|
|
|
|
|
2005-08-17 18:12:49 +08:00
|
|
|
callingContext->makeCurrent();
|
|
|
|
}
|
|
|
|
|
2008-02-29 23:25:57 +08:00
|
|
|
// render all the post draw callbacks
|
2006-09-19 04:54:48 +08:00
|
|
|
drawPostRenderStages(renderInfo,previous);
|
2008-02-29 23:25:57 +08:00
|
|
|
|
|
|
|
if (_camera && _camera->getFinalDrawCallback())
|
|
|
|
{
|
|
|
|
// if we have a camera with a final callback invoke it.
|
|
|
|
(*(_camera->getFinalDrawCallback()))(renderInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// pop the render stages camera.
|
|
|
|
if (_camera) renderInfo.popCamera();
|
2002-10-17 21:48:46 +08:00
|
|
|
}
|
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::drawImplementation(osg::RenderInfo& renderInfo,RenderLeaf*& previous)
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
osg::State& state = *renderInfo.getState();
|
2005-11-23 21:44:27 +08:00
|
|
|
|
2001-09-22 10:42:08 +08:00
|
|
|
if (!_viewport)
|
|
|
|
{
|
2002-04-19 23:02:34 +08:00
|
|
|
notify(FATAL) << "Error: cannot draw stage due to undefined viewport."<< std::endl;
|
2001-09-22 10:42:08 +08:00
|
|
|
return;
|
|
|
|
}
|
2007-07-15 01:07:59 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
// set up the back buffer.
|
2002-04-22 17:37:17 +08:00
|
|
|
state.applyAttribute(_viewport.get());
|
2002-04-16 23:31:46 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
#define USE_SISSOR_TEST
|
|
|
|
#ifdef USE_SISSOR_TEST
|
2007-01-05 00:48:23 +08:00
|
|
|
glScissor( static_cast<int>(_viewport->x()),
|
|
|
|
static_cast<int>(_viewport->y()),
|
|
|
|
static_cast<int>(_viewport->width()),
|
|
|
|
static_cast<int>(_viewport->height()) );
|
2003-01-24 17:11:05 +08:00
|
|
|
//cout << " clearing "<<this<< " "<<_viewport->x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<<std::endl;
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
glEnable( GL_SCISSOR_TEST );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// glEnable( GL_DEPTH_TEST );
|
|
|
|
|
2001-12-03 06:20:46 +08:00
|
|
|
// set which color planes to operate on.
|
|
|
|
if (_colorMask.valid()) _colorMask->apply(state);
|
|
|
|
else glColorMask(GL_TRUE,GL_TRUE,GL_TRUE,GL_TRUE);
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
if (_clearMask & GL_COLOR_BUFFER_BIT)
|
|
|
|
glClearColor( _clearColor[0], _clearColor[1], _clearColor[2], _clearColor[3]);
|
|
|
|
|
|
|
|
if (_clearMask & GL_DEPTH_BUFFER_BIT)
|
|
|
|
glClearDepth( _clearDepth);
|
|
|
|
|
|
|
|
if (_clearMask & GL_STENCIL_BUFFER_BIT)
|
|
|
|
glClearStencil( _clearStencil);
|
|
|
|
|
|
|
|
if (_clearMask & GL_ACCUM_BUFFER_BIT)
|
|
|
|
glClearAccum( _clearAccum[0], _clearAccum[1], _clearAccum[2], _clearAccum[3]);
|
|
|
|
|
|
|
|
|
|
|
|
glClear( _clearMask );
|
2003-12-16 07:23:45 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
#ifdef USE_SISSOR_TEST
|
|
|
|
glDisable( GL_SCISSOR_TEST );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
glMatrixMode( GL_MODELVIEW );
|
|
|
|
glLoadIdentity();
|
|
|
|
|
2005-07-20 00:30:55 +08:00
|
|
|
// apply the positional state.
|
2005-09-02 18:35:38 +08:00
|
|
|
if (_inheritedPositionalStateContainer.valid())
|
2005-07-20 00:30:55 +08:00
|
|
|
{
|
2005-09-02 18:35:38 +08:00
|
|
|
_inheritedPositionalStateContainer->draw(state, previous, &_inheritedPositionalStateContainerMatrix);
|
2005-07-20 00:30:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// apply the positional state.
|
|
|
|
if (_renderStageLighting.valid())
|
|
|
|
{
|
|
|
|
_renderStageLighting->draw(state, previous, 0);
|
|
|
|
}
|
2001-09-20 05:19:47 +08:00
|
|
|
|
|
|
|
// draw the children and local.
|
2006-09-19 04:54:48 +08:00
|
|
|
RenderBin::drawImplementation(renderInfo,previous);
|
2001-09-20 05:19:47 +08:00
|
|
|
|
2006-07-19 04:17:31 +08:00
|
|
|
state.apply();
|
2007-07-15 01:07:59 +08:00
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
2005-06-15 04:51:35 +08:00
|
|
|
|
2006-09-19 04:54:48 +08:00
|
|
|
void RenderStage::drawPostRenderStages(osg::RenderInfo& renderInfo,RenderLeaf*& previous)
|
2005-06-15 04:51:35 +08:00
|
|
|
{
|
|
|
|
if (_postRenderList.empty()) return;
|
|
|
|
|
|
|
|
//cout << "Drawing prerendering stages "<<this<< " "<<_viewport->x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<<std::endl;
|
|
|
|
for(RenderStageList::iterator itr=_postRenderList.begin();
|
|
|
|
itr!=_postRenderList.end();
|
|
|
|
++itr)
|
|
|
|
{
|
2006-09-19 04:54:48 +08:00
|
|
|
itr->second->draw(renderInfo,previous);
|
2005-06-15 04:51:35 +08:00
|
|
|
}
|
|
|
|
//cout << "Done Drawing prerendering stages "<<this<< " "<<_viewport->x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<<std::endl;
|
|
|
|
}
|
|
|
|
|
2001-09-20 05:19:47 +08:00
|
|
|
// Statistics features
|
2005-12-16 01:14:40 +08:00
|
|
|
bool RenderStage::getStats(Statistics& stats) const
|
2001-09-20 05:19:47 +08:00
|
|
|
{
|
2005-12-16 01:14:40 +08:00
|
|
|
bool statsCollected = false;
|
|
|
|
|
|
|
|
for(RenderStageList::const_iterator pre_itr = _preRenderList.begin();
|
|
|
|
pre_itr != _preRenderList.end();
|
|
|
|
++pre_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
if (pre_itr->second->getStats(stats))
|
2005-12-16 01:14:40 +08:00
|
|
|
{
|
|
|
|
statsCollected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(RenderStageList::const_iterator post_itr = _postRenderList.begin();
|
|
|
|
post_itr != _postRenderList.end();
|
|
|
|
++post_itr)
|
|
|
|
{
|
2006-09-04 21:15:08 +08:00
|
|
|
if (post_itr->second->getStats(stats))
|
2005-12-16 01:14:40 +08:00
|
|
|
{
|
|
|
|
statsCollected = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (RenderBin::getStats(stats))
|
2002-05-02 08:14:40 +08:00
|
|
|
{
|
2005-12-16 01:14:40 +08:00
|
|
|
statsCollected = true;
|
2002-05-02 08:14:40 +08:00
|
|
|
}
|
2005-12-16 01:14:40 +08:00
|
|
|
return statsCollected;
|
2001-09-20 05:19:47 +08:00
|
|
|
}
|
2006-11-27 19:25:40 +08:00
|
|
|
|
2006-11-27 22:52:07 +08:00
|
|
|
void RenderStage::attach(osg::Camera::BufferComponent buffer, osg::Image* image)
|
2006-11-27 19:25:40 +08:00
|
|
|
{
|
|
|
|
_bufferAttachmentMap[buffer]._image = image;
|
|
|
|
}
|
2007-01-30 06:44:29 +08:00
|
|
|
|
|
|
|
unsigned int RenderStage::computeNumberOfDynamicRenderLeaves() const
|
|
|
|
{
|
|
|
|
unsigned int count = 0;
|
|
|
|
|
|
|
|
for(RenderStageList::const_iterator pre_itr = _preRenderList.begin();
|
|
|
|
pre_itr != _preRenderList.end();
|
|
|
|
++pre_itr)
|
|
|
|
{
|
|
|
|
count += pre_itr->second->computeNumberOfDynamicRenderLeaves();
|
|
|
|
}
|
|
|
|
|
|
|
|
count += RenderBin::computeNumberOfDynamicRenderLeaves();
|
|
|
|
|
|
|
|
for(RenderStageList::const_iterator post_itr = _postRenderList.begin();
|
|
|
|
post_itr != _postRenderList.end();
|
|
|
|
++post_itr)
|
|
|
|
{
|
|
|
|
count += post_itr->second->computeNumberOfDynamicRenderLeaves();
|
|
|
|
}
|
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|