Added post draw callback to osg::CameraNode/osgUtil::RenderToTextureStage.

Added support for Texture1D, 2D, 3D and TextureRectangle into osgUtil::RenderToTextureStage.
This commit is contained in:
Robert Osfield
2005-07-24 20:31:21 +00:00
parent 42e4488454
commit ee8f7bb756
8 changed files with 100 additions and 21 deletions

View File

@@ -38,7 +38,8 @@ CameraNode::CameraNode(const CameraNode& camera,const CopyOp& copyop):
_viewMatrix(camera._viewMatrix),
_renderOrder(camera._renderOrder),
_renderTargetImplementation(camera._renderTargetImplementation),
_bufferAttachmentMap(camera._bufferAttachmentMap)
_bufferAttachmentMap(camera._bufferAttachmentMap),
_postDrawCallback(camera._postDrawCallback)
{
}