/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield * * 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. */ #include #include #include #include #include #include #include #include #include #include #include using namespace osg; using namespace osgUtil; // register a RenderStage prototype with the RenderBin prototype list. //RegisterRenderBinProxy s_registerRenderStageProxy; 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; _drawBuffer = GL_NONE; _readBuffer = GL_NONE; _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; _cameraRequiresSetUp = false; _camera = 0; _level = 0; _face = 0; _imageReadPixelFormat = GL_RGBA; _imageReadPixelDataType = GL_UNSIGNED_BYTE; } RenderStage::RenderStage(SortMode mode): RenderBin(mode) { // 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; _drawBuffer = GL_NONE; _readBuffer = GL_NONE; _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; _cameraRequiresSetUp = false; _camera = 0; _level = 0; _face = 0; _imageReadPixelFormat = GL_RGBA; _imageReadPixelDataType = GL_UNSIGNED_BYTE; } RenderStage::RenderStage(const RenderStage& rhs,const osg::CopyOp& copyop): RenderBin(rhs,copyop), _stageDrawnThisFrame(false), _preRenderList(rhs._preRenderList), _postRenderList(rhs._postRenderList), _viewport(rhs._viewport), _drawBuffer(rhs._drawBuffer), _readBuffer(rhs._readBuffer), _clearMask(rhs._clearMask), _colorMask(rhs._colorMask), _clearColor(rhs._clearColor), _clearAccum(rhs._clearAccum), _clearDepth(rhs._clearDepth), _clearStencil(rhs._clearStencil), _cameraRequiresSetUp(rhs._cameraRequiresSetUp), _camera(rhs._camera), _level(rhs._level), _face(rhs._face), _imageReadPixelFormat(rhs._imageReadPixelFormat), _imageReadPixelDataType(rhs._imageReadPixelDataType), _renderStageLighting(rhs._renderStageLighting) { _stage = this; } RenderStage::~RenderStage() { } void RenderStage::reset() { _stageDrawnThisFrame = false; if (_renderStageLighting.valid()) _renderStageLighting->reset(); for(RenderStageList::iterator pre_itr = _preRenderList.begin(); pre_itr != _preRenderList.end(); ++pre_itr) { pre_itr->second->reset(); } RenderBin::reset(); for(RenderStageList::iterator post_itr = _postRenderList.begin(); post_itr != _postRenderList.end(); ++post_itr) { post_itr->second->reset(); } _preRenderList.clear(); _postRenderList.clear(); } void RenderStage::sort() { for(RenderStageList::iterator pre_itr = _preRenderList.begin(); pre_itr != _preRenderList.end(); ++pre_itr) { pre_itr->second->sort(); } RenderBin::sort(); for(RenderStageList::iterator post_itr = _postRenderList.begin(); post_itr != _postRenderList.end(); ++post_itr) { post_itr->second->sort(); } } void RenderStage::addPreRenderStage(RenderStage* rs, int order) { 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)); } } } void RenderStage::addPostRenderStage(RenderStage* rs, int order) { 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)); } } } void RenderStage::drawPreRenderStages(osg::RenderInfo& renderInfo,RenderLeaf*& previous) { if (_preRenderList.empty()) return; //cout << "Drawing prerendering stages "<x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<second->draw(renderInfo,previous); } //cout << "Done Drawing prerendering stages "<x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<getRenderTargetImplementation(); osg::Camera::RenderTargetImplementation renderTargetFallback = _camera->getRenderTargetFallback(); osg::Camera::BufferAttachmentMap& bufferAttachments = _camera->getBufferAttachmentMap(); // compute the required dimensions int width = static_cast(_viewport->x() + _viewport->width()); int height = static_cast(_viewport->y() + _viewport->height()); int depth = 1; osg::Camera::BufferAttachmentMap::iterator itr; for(itr = bufferAttachments.begin(); itr != bufferAttachments.end(); ++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()<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; } _bufferAttachmentMap[itr->first]._imageReadPixelFormat = pixelFormat; _bufferAttachmentMap[itr->first]._imageReadPixelDataType = dataType; _bufferAttachmentMap[itr->first]._image = image; } 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(texture))) { if (texture1D->getTextureWidth()==0) { texture1D->setTextureWidth(width); } } else if (0 != (texture2D = dynamic_cast(texture))) { if (texture2D->getTextureWidth()==0 || texture2D->getTextureHeight()==0) { texture2D->setTextureSize(width,height); } } else if (0 != (texture3D = dynamic_cast(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.. texture3D->setTextureSize(width,height,height); } } else if (0 != (textureCubeMap = dynamic_cast(texture))) { if (textureCubeMap->getTextureWidth()==0 || textureCubeMap->getTextureHeight()==0) { textureCubeMap->setTextureSize(width,height); } } else if (0 != (textureRectangle = dynamic_cast(texture))) { if (textureRectangle->getTextureWidth()==0 || textureRectangle->getTextureHeight()==0) { textureRectangle->setTextureSize(width,height); } } } } if (renderTargetImplementation==osg::Camera::FRAME_BUFFER_OBJECT) { osg::FBOExtensions* fbo_ext = osg::FBOExtensions::instance(state.getContextID(),true); bool fbo_supported = fbo_ext && fbo_ext->isSupported(); if (fbo_supported && !_fbo) { osg::notify(osg::INFO)<<"Setting up osg::Camera::FRAME_BUFFER_OBJECT"< lock(*(_camera->getDataChangeMutex())); osg::ref_ptr fbo = new osg::FrameBufferObject; bool colorAttached = false; bool depthAttached = false; bool stencilAttached = false; for(osg::Camera::BufferAttachmentMap::iterator itr = bufferAttachments.begin(); itr != bufferAttachments.end(); ++itr) { osg::Camera::BufferComponent buffer = itr->first; osg::Camera::Attachment& attachment = itr->second; if (attachment._texture.valid() || attachment._image.valid()) fbo->setAttachment(buffer, osg::FrameBufferAttachment(attachment)); else fbo->setAttachment(buffer, osg::FrameBufferAttachment(new osg::RenderBuffer(width, height, attachment._internalFormat))); if (buffer==osg::Camera::DEPTH_BUFFER) depthAttached = true; else if (buffer==osg::Camera::STENCIL_BUFFER) stencilAttached = true; else if (buffer>=osg::Camera::COLOR_BUFFER) colorAttached = true; } if (!depthAttached) { fbo->setAttachment(osg::Camera::DEPTH_BUFFER, osg::FrameBufferAttachment(new osg::RenderBuffer(width, height, GL_DEPTH_COMPONENT24))); } if (!colorAttached) { fbo->setAttachment(osg::Camera::COLOR_BUFFER, osg::FrameBufferAttachment(new osg::RenderBuffer(width, height, GL_RGB))); } fbo->apply(state); GLenum status = fbo_ext->glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT); if (status != GL_FRAMEBUFFER_COMPLETE_EXT) { osg::notify(osg::NOTICE)<<"RenderStage::runCameraSetUp(), FBO setup failed, FBO status= 0x"<glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0); fbo = 0; // 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); _fbo = fbo; } } if (!fbo_supported) { if (renderTargetImplementation context = getGraphicsContext(); if (!context) { // set up the traits of the graphics context that we want osg::ref_ptr traits = new osg::GraphicsContext::Traits; traits->width = width; traits->height = height; // osg::notify(osg::NOTICE)<<"traits = "<width<<" "<height<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); osg::Texture* pBufferTexture = 0; GLenum bufferFormat = GL_NONE; unsigned int level = 0; unsigned int face = 0; bool colorAttached = false; bool depthAttached = false; bool stencilAttached = false; for(osg::Camera::BufferAttachmentMap::iterator itr = bufferAttachments.begin(); itr != bufferAttachments.end(); ++itr) { osg::Camera::BufferComponent buffer = itr->first; osg::Camera::Attachment& attachment = itr->second; switch(buffer) { case(osg::Camera::DEPTH_BUFFER): { traits->depth = 24; depthAttached = true; break; } case(osg::Camera::STENCIL_BUFFER): { traits->stencil = 8; stencilAttached = true; break; } case(osg::Camera::COLOR_BUFFER): { 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; } } level = attachment._level; face = attachment._face; if (renderTargetImplementation==osg::Camera::PIXEL_BUFFER_RTT) { traits->target = attachment._texture.valid() ? attachment._texture->getTextureTarget() : 0; traits->format = bufferFormat; traits->level = level; traits->face = face; traits->mipMapGeneration = attachment._mipMapGeneration; } break; } default: { if (renderTargetImplementation==osg::Camera::SEPERATE_WINDOW) osg::notify(osg::NOTICE)<<"Warning: RenderStage::runCameraSetUp(State&) Window "; else osg::notify(osg::NOTICE)<<"Warning: RenderStage::runCameraSetUp(State&) Pbuffer "; osg::notify(osg::NOTICE)<<"does not support multiple color outputs."<depth = 24; } if (!colorAttached) { if (bufferFormat == GL_NONE) bufferFormat = GL_RGB; traits->red = 8; traits->green = 8; traits->blue = 8; traits->alpha = (bufferFormat==GL_RGBA) ? 8 : 0; } // share OpenGL objects if possible... if (state.getGraphicsContext()) { traits->sharedContext = state.getGraphicsContext(); const osg::GraphicsContext::Traits* sharedTraits = traits->sharedContext->getTraits(); if (sharedTraits) { traits->hostName = sharedTraits->hostName; traits->displayNum = sharedTraits->displayNum; traits->screenNum = sharedTraits->screenNum; } } // create the graphics context according to these traits. context = osg::GraphicsContext::createGraphicsContext(traits.get()); if (context.valid() && context->realize()) { osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(State&) Context has been realized "<setReadPBuffer(context.get()); } else { osg::notify(osg::INFO)<<"RenderStage::runCameraSetUp(State&) Assigning texture to RenderStage so that it does the copy"<second._texture.valid()) setTexture(itr->second._texture.get(), itr->second._level, itr->second._face); } } } void RenderStage::copyTexture(osg::RenderInfo& renderInfo) { osg::State& state = *renderInfo.getState(); if (_readBuffer != GL_NONE) { glReadBuffer(_readBuffer); } // 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; // 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(_texture.get())) != 0) { texture2D->copyTexSubImage2D(state, static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height())); } else if ((textureRec = dynamic_cast(_texture.get())) != 0) { textureRec->copyTexSubImage2D(state, static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height())); } else if ((texture1D = dynamic_cast(_texture.get())) != 0) { // need to implement texture1D->copyTexSubImage1D(state, static_cast(_viewport->x()), static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width())); } else if ((texture3D = dynamic_cast(_texture.get())) != 0) { // need to implement texture3D->copyTexSubImage3D(state, static_cast(_viewport->x()), static_cast(_viewport->y()), _face, static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height())); } else if ((textureCubeMap = dynamic_cast(_texture.get())) != 0) { // need to implement textureCubeMap->copyTexSubImageCubeMap(state, _face, static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height())); } } void RenderStage::drawInner(osg::RenderInfo& renderInfo,RenderLeaf*& previous, bool& doCopyTexture) { osg::State& state = *renderInfo.getState(); osg::FBOExtensions* fbo_ext = _fbo.valid() ? osg::FBOExtensions::instance(state.getContextID(),true) : 0; bool fbo_supported = fbo_ext && fbo_ext->isSupported(); bool using_multiple_render_targets = fbo_supported && _fbo->hasMultipleRenderingTargets(); if (!using_multiple_render_targets) { if (_drawBuffer != GL_NONE) { glDrawBuffer(_drawBuffer); } if (_readBuffer != GL_NONE) { glReadBuffer(_readBuffer); } } if (fbo_supported) { _fbo->apply(state); } // do the drawing itself. RenderBin::draw(renderInfo,previous); if(state.getCheckForGLErrors()!=osg::State::NEVER_CHECK_GL_ERRORS) { GLenum errorNo = glGetError(); if (errorNo!=GL_NO_ERROR) { const char* error = (char*)gluErrorString(errorNo); if (error) osg::notify(osg::NOTICE)<<"Warning: detected OpenGL error '"<glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT)<::const_iterator itr; for(itr = _bufferAttachmentMap.begin(); itr != _bufferAttachmentMap.end(); ++itr) { if (itr->second._image.valid()) { if (using_multiple_render_targets) { 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(_fbo->getMultipleRenderingTargets()[0]); } else { glReadBuffer(GL_COLOR_ATTACHMENT0_EXT + (attachment - osg::Camera::COLOR_BUFFER0)); } } else { if (_readBuffer != GL_NONE) { glReadBuffer(_readBuffer); } } GLenum pixelFormat = itr->second._image->getPixelFormat(); if (pixelFormat==0) pixelFormat = _imageReadPixelFormat; if (pixelFormat==0) pixelFormat = GL_RGB; GLenum dataType = itr->second._image->getDataType(); if (dataType==0) dataType = _imageReadPixelDataType; if (dataType==0) dataType = GL_UNSIGNED_BYTE; itr->second._image->readPixels(static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height()), pixelFormat, dataType); } } if (fbo_supported) { // switch of the frame buffer object fbo_ext->glBindFramebufferEXT(GL_FRAMEBUFFER_EXT, 0); doCopyTexture = true; } if (fbo_supported && _camera) { // now generate mipmaps if they are required. const osg::Camera::BufferAttachmentMap& bufferAttachements = _camera->getBufferAttachmentMap(); for(osg::Camera::BufferAttachmentMap::const_iterator itr = bufferAttachements.begin(); itr != bufferAttachements.end(); ++itr) { if (itr->second._texture.valid() && itr->second._mipMapGeneration) { state.setActiveTextureUnit(0); state.applyTextureAttribute(0, itr->second._texture.get()); fbo_ext->glGenerateMipmapEXT(itr->second._texture->getTextureTarget()); } } } } struct DrawInnerOperation : public osg::Operation { DrawInnerOperation(RenderStage* stage, osg::RenderInfo& renderInfo) : osg::Operation("DrawInnerStage",false), _stage(stage), _renderInfo(renderInfo) {} virtual void operator () (osg::Object* object) { osg::GraphicsContext* context = dynamic_cast(object); if (!context) return; // osg::notify(osg::NOTICE)<<"DrawInnerOperation operator"<getState()); _stage->drawInner(_renderInfo, previous, doCopyTexture); } } RenderStage* _stage; RenderInfo _renderInfo; }; void RenderStage::draw(osg::RenderInfo& renderInfo,RenderLeaf*& previous) { if (_stageDrawnThisFrame) return; // push the stages camera so that drawing code can query it if (_camera) renderInfo.pushCamera(_camera); _stageDrawnThisFrame = true; if (_camera && _camera->getInitialDrawCallback()) { // if we have a camera with a intial draw callback invoke it. (*(_camera->getInitialDrawCallback()))(renderInfo); } // note, SceneView does call to drawPreRenderStages explicitly // so there is no need to call it here. drawPreRenderStages(renderInfo,previous); if (_cameraRequiresSetUp) { runCameraSetUp(renderInfo); } osg::State& state = *renderInfo.getState(); osg::State* useState = &state; osg::GraphicsContext* callingContext = state.getGraphicsContext(); osg::GraphicsContext* useContext = callingContext; osg::OperationThread* useThread = 0; osg::RenderInfo useRenderInfo(renderInfo); RenderLeaf* saved_previous = previous; 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(); // osg::notify(osg::NOTICE)<<" enclosing state before - "<getState(); useContext = _graphicsContext.get(); useThread = useContext->getGraphicsThread(); useRenderInfo.setState(useState); // synchronize the frame stamps useState->setFrameStamp(const_cast(state.getFrameStamp())); // map the DynamicObjectCount across to the new window useState->setDynamicObjectCount(state.getDynamicObjectCount()); useState->setDynamicObjectRenderingCompletedCallback(state.getDynamicObjectRenderingCompletedCallback()); if (!useThread) { previous = 0; useContext->makeCurrent(); // osg::notify(osg::NOTICE)<<" nested state before - "<getStateSetStackSize()<getStateSetStackSize(); if (_camera && _camera->getPreDrawCallback()) { // if we have a camera with a pre draw callback invoke it. (*(_camera->getPreDrawCallback()))(renderInfo); } bool doCopyTexture = _texture.valid() ? (callingContext != useContext) : false; if (useThread) { #if 1 ref_ptr 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 useThread->add(new DrawInnerOperation( this, renderInfo ), true); doCopyTexture = false; #endif } else { drawInner( useRenderInfo, previous, doCopyTexture); if (useRenderInfo.getUserData() != renderInfo.getUserData()) { renderInfo.setUserData(useRenderInfo.getUserData()); } } if (useState != &state) { // reset the local State's DynamicObjectCount state.setDynamicObjectCount(useState->getDynamicObjectCount()); useState->setDynamicObjectRenderingCompletedCallback(0); } // 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); } copyTexture(renderInfo); } if (_camera && _camera->getPostDrawCallback()) { // if we have a camera with a post draw callback invoke it. (*(_camera->getPostDrawCallback()))(renderInfo); } if (_graphicsContext.valid() && _graphicsContext != callingContext) { useState->popStateSetStackToSize(originalStackSize); if (!useThread) { // flush any command left in the useContex's FIFO // to ensure that textures are updated before main thread commenses. glFlush(); useContext->releaseContext(); } } if (callingContext && useContext != callingContext) { // restore the graphics context. previous = saved_previous; // osg::notify(osg::NOTICE)<<" nested state after - "<getStateSetStackSize()<makeCurrent(); } // render all the post draw callbacks drawPostRenderStages(renderInfo,previous); 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(); } void RenderStage::drawImplementation(osg::RenderInfo& renderInfo,RenderLeaf*& previous) { osg::State& state = *renderInfo.getState(); if (!_viewport) { notify(FATAL) << "Error: cannot draw stage due to undefined viewport."<< std::endl; return; } // set up the back buffer. state.applyAttribute(_viewport.get()); #define USE_SISSOR_TEST #ifdef USE_SISSOR_TEST glScissor( static_cast(_viewport->x()), static_cast(_viewport->y()), static_cast(_viewport->width()), static_cast(_viewport->height()) ); //cout << " clearing "<x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<apply(state); else glColorMask(GL_TRUE,GL_TRUE,GL_TRUE,GL_TRUE); 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 ); #ifdef USE_SISSOR_TEST glDisable( GL_SCISSOR_TEST ); #endif glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); // apply the positional state. if (_inheritedPositionalStateContainer.valid()) { _inheritedPositionalStateContainer->draw(state, previous, &_inheritedPositionalStateContainerMatrix); } // apply the positional state. if (_renderStageLighting.valid()) { _renderStageLighting->draw(state, previous, 0); } // draw the children and local. RenderBin::drawImplementation(renderInfo,previous); state.apply(); } void RenderStage::drawPostRenderStages(osg::RenderInfo& renderInfo,RenderLeaf*& previous) { if (_postRenderList.empty()) return; //cout << "Drawing prerendering stages "<x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<second->draw(renderInfo,previous); } //cout << "Done Drawing prerendering stages "<x()<<","<< _viewport->y()<<","<< _viewport->width()<<","<< _viewport->height()<second->getStats(stats)) { statsCollected = true; } } for(RenderStageList::const_iterator post_itr = _postRenderList.begin(); post_itr != _postRenderList.end(); ++post_itr) { if (post_itr->second->getStats(stats)) { statsCollected = true; } } if (RenderBin::getStats(stats)) { statsCollected = true; } return statsCollected; } void RenderStage::attach(osg::Camera::BufferComponent buffer, osg::Image* image) { _bufferAttachmentMap[buffer]._image = image; } 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; }