diff --git a/src/D3DHost/D3DHost_View.cxx b/src/D3DHost/D3DHost_View.cxx index 08532ddfc3..e773f87ba1 100644 --- a/src/D3DHost/D3DHost_View.cxx +++ b/src/D3DHost/D3DHost_View.cxx @@ -301,7 +301,7 @@ void D3DHost_View::Redraw() { return; } - else if (myFBO != NULL) + else if (!myFBO.IsNull()) { OpenGl_View::Redraw(); return; @@ -310,9 +310,9 @@ void D3DHost_View::Redraw() Handle(OpenGl_Context) aCtx = myWorkspace->GetGlContext(); myToFlipOutput = Standard_True; myD3dWglFbo->LockSurface (aCtx); - myFBO = myD3dWglFbo.get(); + myFBO = myD3dWglFbo; OpenGl_View::Redraw(); - myFBO = NULL; + myFBO.Nullify(); myD3dWglFbo->UnlockSurface (aCtx); myToFlipOutput = Standard_False; if (aCtx->caps->buffersNoSwap) @@ -351,7 +351,7 @@ void D3DHost_View::RedrawImmediate() { return; } - else if (myFBO != NULL) + else if (!myFBO.IsNull()) { OpenGl_View::Redraw(); return; @@ -359,9 +359,9 @@ void D3DHost_View::RedrawImmediate() myToFlipOutput = Standard_True; myD3dWglFbo->LockSurface (aCtx); - myFBO = myD3dWglFbo.get(); + myFBO = myD3dWglFbo; OpenGl_View::RedrawImmediate(); - myFBO = NULL; + myFBO.Nullify(); myD3dWglFbo->UnlockSurface (aCtx); myToFlipOutput = Standard_False; if (aCtx->caps->buffersNoSwap) diff --git a/src/Graphic3d/FILES b/src/Graphic3d/FILES index f373a1a9f4..ef47d46dc2 100755 --- a/src/Graphic3d/FILES +++ b/src/Graphic3d/FILES @@ -95,7 +95,6 @@ Graphic3d_NameOfTexturePlane.hxx Graphic3d_NListOfHAsciiString.hxx Graphic3d_NMapOfTransient.hxx Graphic3d_PriorityDefinitionError.hxx -Graphic3d_PtrFrameBuffer.hxx Graphic3d_RenderingMode.hxx Graphic3d_RenderingParams.hxx Graphic3d_SequenceOfGroup.hxx diff --git a/src/Graphic3d/Graphic3d_CView.hxx b/src/Graphic3d/Graphic3d_CView.hxx index 2a29b9101e..414cfdf4c1 100644 --- a/src/Graphic3d/Graphic3d_CView.hxx +++ b/src/Graphic3d/Graphic3d_CView.hxx @@ -30,7 +30,6 @@ #include #include #include -#include #include #include #include @@ -349,28 +348,28 @@ public: const Graphic3d_ZLayerSettings& theSettings) = 0; //! Returns pointer to an assigned framebuffer object. - virtual Graphic3d_PtrFrameBuffer FBO() const = 0; + virtual Handle(Standard_Transient) FBO() const = 0; //! Sets framebuffer object for offscreen rendering. - virtual void SetFBO (const Graphic3d_PtrFrameBuffer theFBO) = 0; + virtual void SetFBO (const Handle(Standard_Transient)& theFbo) = 0; //! Generate offscreen FBO in the graphic library. //! If not supported on hardware returns NULL. - virtual Graphic3d_PtrFrameBuffer FBOCreate (const Standard_Integer theWidth, - const Standard_Integer theHeight) = 0; + virtual Handle(Standard_Transient) FBOCreate (const Standard_Integer theWidth, + const Standard_Integer theHeight) = 0; //! Remove offscreen FBO from the graphic library - virtual void FBORelease (Graphic3d_PtrFrameBuffer& theFBOPtr) = 0; + virtual void FBORelease (Handle(Standard_Transient)& theFbo) = 0; //! Read offscreen FBO configuration. - virtual void FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, + virtual void FBOGetDimensions (const Handle(Standard_Transient)& theFbo, Standard_Integer& theWidth, Standard_Integer& theHeight, Standard_Integer& theWidthMax, Standard_Integer& theHeightMax) = 0; //! Change offscreen FBO viewport. - virtual void FBOChangeViewport (Graphic3d_PtrFrameBuffer& theFBOPtr, + virtual void FBOChangeViewport (const Handle(Standard_Transient)& theFbo, const Standard_Integer theWidth, const Standard_Integer theHeight) = 0; diff --git a/src/Graphic3d/Graphic3d_GraphicDriver.hxx b/src/Graphic3d/Graphic3d_GraphicDriver.hxx index 4df4e19a06..edbbe0cd1d 100644 --- a/src/Graphic3d/Graphic3d_GraphicDriver.hxx +++ b/src/Graphic3d/Graphic3d_GraphicDriver.hxx @@ -38,7 +38,6 @@ #include #include #include -#include #include #include #include diff --git a/src/Graphic3d/Graphic3d_PtrFrameBuffer.hxx b/src/Graphic3d/Graphic3d_PtrFrameBuffer.hxx deleted file mode 100644 index f299750b5c..0000000000 --- a/src/Graphic3d/Graphic3d_PtrFrameBuffer.hxx +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) 1999-2014 OPEN CASCADE SAS -// -// This file is part of Open CASCADE Technology software library. -// -// This library is free software; you can redistribute it and/or modify it under -// the terms of the GNU Lesser General Public License version 2.1 as published -// by the Free Software Foundation, with special exception defined in the file -// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT -// distribution for complete text of the license and disclaimer of any warranty. -// -// Alternatively, this file may be used under the terms of Open CASCADE -// commercial license or contractual agreement. - -#ifndef _Graphic3d_PtrFrameBuffer_HeaderFile -#define _Graphic3d_PtrFrameBuffer_HeaderFile - -class Graphic3d_FrameBuffer; -typedef Graphic3d_FrameBuffer* Graphic3d_PtrFrameBuffer; - -#endif /*Graphic3d_PtrFrameBuffer_HeaderFile*/ diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/OpenGl/OpenGl_GraphicDriver.hxx index 0f73a4f533..3d990e9da5 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.hxx +++ b/src/OpenGl/OpenGl_GraphicDriver.hxx @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include diff --git a/src/OpenGl/OpenGl_View.cxx b/src/OpenGl/OpenGl_View.cxx index 6ecb61dff5..c68579f384 100644 --- a/src/OpenGl/OpenGl_View.cxx +++ b/src/OpenGl/OpenGl_View.cxx @@ -70,7 +70,6 @@ OpenGl_View::OpenGl_View (const Handle(Graphic3d_StructureManager)& theMgr, myFog (myDefaultFog), myZClip (myDefaultZClip), myCamera (new Graphic3d_Camera()), - myFBO (NULL), myUseGLLight (Standard_True), myToShowTrihedron (false), myToShowGradTrihedron (false), @@ -517,26 +516,26 @@ void OpenGl_View::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId, //function : FBO //purpose : //======================================================================= -Graphic3d_PtrFrameBuffer OpenGl_View::FBO() const +Handle(Standard_Transient) OpenGl_View::FBO() const { - return reinterpret_cast (myFBO); + return Handle(Standard_Transient)(myFBO); } //======================================================================= //function : SetFBO //purpose : //======================================================================= -void OpenGl_View::SetFBO (const Graphic3d_PtrFrameBuffer theFBO) +void OpenGl_View::SetFBO (const Handle(Standard_Transient)& theFbo) { - myFBO = reinterpret_cast (theFBO); + myFBO = Handle(OpenGl_FrameBuffer)::DownCast (theFbo); } //======================================================================= //function : FBOCreate //purpose : //======================================================================= -Graphic3d_PtrFrameBuffer OpenGl_View::FBOCreate (const Standard_Integer theWidth, - const Standard_Integer theHeight) +Handle(Standard_Transient) OpenGl_View::FBOCreate (const Standard_Integer theWidth, + const Standard_Integer theHeight) { return myWorkspace->FBOCreate (theWidth, theHeight); } @@ -545,22 +544,34 @@ Graphic3d_PtrFrameBuffer OpenGl_View::FBOCreate (const Standard_Integer theWidth //function : FBORelease //purpose : //======================================================================= -void OpenGl_View::FBORelease (Graphic3d_PtrFrameBuffer& theFBOPtr) +void OpenGl_View::FBORelease (Handle(Standard_Transient)& theFbo) { - myWorkspace->FBORelease (theFBOPtr); + Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo); + if (aFrameBuffer.IsNull()) + { + return; + } + + myWorkspace->FBORelease (aFrameBuffer); + theFbo.Nullify(); } //======================================================================= //function : FBOGetDimensions //purpose : //======================================================================= -void OpenGl_View::FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, +void OpenGl_View::FBOGetDimensions (const Handle(Standard_Transient)& theFbo, Standard_Integer& theWidth, Standard_Integer& theHeight, Standard_Integer& theWidthMax, Standard_Integer& theHeightMax) { - const OpenGl_FrameBuffer* aFrameBuffer = (const OpenGl_FrameBuffer* )theFBOPtr; + const Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo); + if (aFrameBuffer.IsNull()) + { + return; + } + theWidth = aFrameBuffer->GetVPSizeX(); // current viewport size theHeight = aFrameBuffer->GetVPSizeY(); theWidthMax = aFrameBuffer->GetSizeX(); // texture size @@ -571,11 +582,16 @@ void OpenGl_View::FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, //function : FBOChangeViewport //purpose : //======================================================================= -void OpenGl_View::FBOChangeViewport (Graphic3d_PtrFrameBuffer& theFBOPtr, +void OpenGl_View::FBOChangeViewport (const Handle(Standard_Transient)& theFbo, const Standard_Integer theWidth, const Standard_Integer theHeight) { - OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theFBOPtr; + const Handle(OpenGl_FrameBuffer) aFrameBuffer = Handle(OpenGl_FrameBuffer)::DownCast (theFbo); + if (aFrameBuffer.IsNull()) + { + return; + } + aFrameBuffer->ChangeViewport (theWidth, theHeight); } diff --git a/src/OpenGl/OpenGl_View.hxx b/src/OpenGl/OpenGl_View.hxx index 6a058aa01e..0cb0759b2b 100644 --- a/src/OpenGl/OpenGl_View.hxx +++ b/src/OpenGl/OpenGl_View.hxx @@ -233,28 +233,28 @@ public: const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE; //! Returns pointer to an assigned framebuffer object. - Standard_EXPORT virtual Graphic3d_PtrFrameBuffer FBO() const Standard_OVERRIDE; + Standard_EXPORT virtual Handle(Standard_Transient) FBO() const Standard_OVERRIDE; //! Sets framebuffer object for offscreen rendering. - Standard_EXPORT virtual void SetFBO (const Graphic3d_PtrFrameBuffer theFBO) Standard_OVERRIDE; + Standard_EXPORT virtual void SetFBO (const Handle(Standard_Transient)& theFbo) Standard_OVERRIDE; //! Generate offscreen FBO in the graphic library. //! If not supported on hardware returns NULL. - Standard_EXPORT virtual Graphic3d_PtrFrameBuffer FBOCreate (const Standard_Integer theWidth, - const Standard_Integer theHeight) Standard_OVERRIDE; + Standard_EXPORT virtual Handle(Standard_Transient) FBOCreate (const Standard_Integer theWidth, + const Standard_Integer theHeight) Standard_OVERRIDE; //! Remove offscreen FBO from the graphic library - Standard_EXPORT virtual void FBORelease (Graphic3d_PtrFrameBuffer& theFBOPtr) Standard_OVERRIDE; + Standard_EXPORT virtual void FBORelease (Handle(Standard_Transient)& theFbo) Standard_OVERRIDE; //! Read offscreen FBO configuration. - Standard_EXPORT virtual void FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, + Standard_EXPORT virtual void FBOGetDimensions (const Handle(Standard_Transient)& theFbo, Standard_Integer& theWidth, Standard_Integer& theHeight, Standard_Integer& theWidthMax, Standard_Integer& theHeightMax) Standard_OVERRIDE; //! Change offscreen FBO viewport. - Standard_EXPORT virtual void FBOChangeViewport (Graphic3d_PtrFrameBuffer& theFBOPtr, + Standard_EXPORT virtual void FBOChangeViewport (const Handle(Standard_Transient)& theFbo, const Standard_Integer theWidth, const Standard_Integer theHeight) Standard_OVERRIDE; @@ -569,7 +569,7 @@ protected: OPENGL_ZCLIP myZClip; Graphic3d_SequenceOfHClipPlane myClipPlanes; Handle(Graphic3d_Camera) myCamera; - OpenGl_FrameBuffer* myFBO; + Handle(OpenGl_FrameBuffer) myFBO; Standard_Boolean myUseGLLight; Standard_Boolean myToShowTrihedron; Standard_Boolean myToShowGradTrihedron; diff --git a/src/OpenGl/OpenGl_View_Print.cxx b/src/OpenGl/OpenGl_View_Print.cxx index 3251a5e4db..921f8f67d8 100644 --- a/src/OpenGl/OpenGl_View_Print.cxx +++ b/src/OpenGl/OpenGl_View_Print.cxx @@ -343,7 +343,7 @@ Standard_Boolean OpenGl_View::Print (const Aspect_Handle thePrinterDC, // Frame buffer initialization OpenGl_FrameBuffer* aFrameBuffer = NULL; - OpenGl_FrameBuffer* aPrevBuffer = (OpenGl_FrameBuffer*)myFBO; + OpenGl_FrameBuffer* aPrevBuffer = myFBO.operator->(); Standard_Integer aFrameWidth (0), aFrameHeight (0), aPrevBufferX (0), aPrevBufferY (0); diff --git a/src/OpenGl/OpenGl_View_Redraw.cxx b/src/OpenGl/OpenGl_View_Redraw.cxx index 82734bc2b5..aeabc27612 100644 --- a/src/OpenGl/OpenGl_View_Redraw.cxx +++ b/src/OpenGl/OpenGl_View_Redraw.cxx @@ -284,7 +284,7 @@ void OpenGl_View::Redraw() // set resolution ratio aCtx->SetResolutionRatio (RenderingParams().ResolutionRatio()); - OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )myFBO; + OpenGl_FrameBuffer* aFrameBuffer = myFBO.operator->(); bool toSwap = aCtx->IsRender() && !aCtx->caps->buffersNoSwap && aFrameBuffer == NULL; @@ -521,7 +521,7 @@ void OpenGl_View::RedrawImmediate() const Graphic3d_StereoMode aStereoMode = myRenderParams.StereoMode; Graphic3d_Camera::Projection aProjectType = myCamera->ProjectionType(); - OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )myFBO; + OpenGl_FrameBuffer* aFrameBuffer = myFBO.operator->(); if ( aFrameBuffer == NULL && !aCtx->DefaultFrameBuffer().IsNull() diff --git a/src/OpenGl/OpenGl_Workspace.cxx b/src/OpenGl/OpenGl_Workspace.cxx index b05c7c0c62..640e17ef04 100644 --- a/src/OpenGl/OpenGl_Workspace.cxx +++ b/src/OpenGl/OpenGl_Workspace.cxx @@ -1084,45 +1084,39 @@ Standard_Boolean OpenGl_Workspace::IsCullingEnabled() const // function : FBOCreate // purpose : // ======================================================================= -Graphic3d_PtrFrameBuffer OpenGl_Workspace::FBOCreate (const Standard_Integer theWidth, - const Standard_Integer theHeight) +Handle(OpenGl_FrameBuffer) OpenGl_Workspace::FBOCreate (const Standard_Integer theWidth, + const Standard_Integer theHeight) { // activate OpenGL context if (!Activate()) - return NULL; + return Handle(OpenGl_FrameBuffer)(); // create the FBO const Handle(OpenGl_Context)& aCtx = GetGlContext(); - OpenGl_FrameBuffer* aFrameBuffer = new OpenGl_FrameBuffer(); + Handle(OpenGl_FrameBuffer) aFrameBuffer = new OpenGl_FrameBuffer(); if (!aFrameBuffer->Init (aCtx, theWidth, theHeight, GL_RGBA8, GL_DEPTH24_STENCIL8, 0)) { aFrameBuffer->Release (aCtx.operator->()); - delete aFrameBuffer; - return NULL; + return Handle(OpenGl_FrameBuffer)(); } - return (Graphic3d_PtrFrameBuffer )aFrameBuffer; + return aFrameBuffer; } // ======================================================================= // function : FBORelease // purpose : // ======================================================================= -void OpenGl_Workspace::FBORelease (Graphic3d_PtrFrameBuffer theFBOPtr) +void OpenGl_Workspace::FBORelease (Handle(OpenGl_FrameBuffer)& theFbo) { // activate OpenGL context if (!Activate() - || theFBOPtr == NULL) + || theFbo.IsNull()) { return; } - // release the object - OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer*)theFBOPtr; - if (aFrameBuffer != NULL) - { - aFrameBuffer->Release (GetGlContext().operator->()); - } - delete aFrameBuffer; + theFbo->Release (GetGlContext().operator->()); + theFbo.Nullify(); } inline bool getDataFormat (const Image_PixMap& theData, @@ -1209,9 +1203,9 @@ inline Standard_Size getAligned (const Standard_Size theNumber, // function : BufferDump // purpose : // ======================================================================= -Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFBOPtr, - Image_PixMap& theImage, - const Graphic3d_BufferType& theBufferType) +Standard_Boolean OpenGl_Workspace::BufferDump (const Handle(OpenGl_FrameBuffer)& theFbo, + Image_PixMap& theImage, + const Graphic3d_BufferType& theBufferType) { GLenum aFormat, aType; if (theImage.IsEmpty() @@ -1230,9 +1224,9 @@ Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFB #endif // bind FBO if used - if (theFBOPtr != NULL && theFBOPtr->IsValid()) + if (!theFbo.IsNull() && theFbo->IsValid()) { - theFBOPtr->BindBuffer (GetGlContext()); + theFbo->BindBuffer (GetGlContext()); } else { @@ -1290,9 +1284,9 @@ Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFB glPixelStorei (GL_PACK_ROW_LENGTH, 0); #endif - if (theFBOPtr != NULL && theFBOPtr->IsValid()) + if (!theFbo.IsNull() && theFbo->IsValid()) { - theFBOPtr->UnbindBuffer (GetGlContext()); + theFbo->UnbindBuffer (GetGlContext()); } else { diff --git a/src/OpenGl/OpenGl_Workspace.hxx b/src/OpenGl/OpenGl_Workspace.hxx index c211954081..6da121e3d9 100644 --- a/src/OpenGl/OpenGl_Workspace.hxx +++ b/src/OpenGl/OpenGl_Workspace.hxx @@ -16,7 +16,6 @@ #ifndef _OpenGl_Workspace_Header #define _OpenGl_Workspace_Header -#include #include #include @@ -128,13 +127,13 @@ public: const Handle(OpenGl_Context)& GetGlContext() { return myGlContext; } - Standard_EXPORT Graphic3d_PtrFrameBuffer FBOCreate (const Standard_Integer theWidth, const Standard_Integer theHeight); + Standard_EXPORT Handle(OpenGl_FrameBuffer) FBOCreate (const Standard_Integer theWidth, const Standard_Integer theHeight); - Standard_EXPORT void FBORelease (Graphic3d_PtrFrameBuffer theFBOPtr); + Standard_EXPORT void FBORelease (Handle(OpenGl_FrameBuffer)& theFbo); - Standard_Boolean BufferDump (OpenGl_FrameBuffer* theFBOPtr, - Image_PixMap& theImage, - const Graphic3d_BufferType& theBufferType); + Standard_Boolean BufferDump (const Handle(OpenGl_FrameBuffer)& theFbo, + Image_PixMap& theImage, + const Graphic3d_BufferType& theBufferType); Standard_EXPORT Standard_Integer Width() const; diff --git a/src/V3d/V3d_View.cxx b/src/V3d/V3d_View.cxx index 9464ca61e3..f9da1b49f9 100644 --- a/src/V3d/V3d_View.cxx +++ b/src/V3d/V3d_View.cxx @@ -2940,11 +2940,11 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage, const V3d_StereoDumpOptions theStereoOptions) { // always prefer hardware accelerated offscreen buffer - Graphic3d_PtrFrameBuffer aFBOPtr = NULL; - Graphic3d_PtrFrameBuffer aPrevFBOPtr = myView->FBO(); + Handle(Standard_Transient) aFBOPtr; + Handle(Standard_Transient) aPrevFBOPtr = myView->FBO(); Standard_Integer aFBOVPSizeX (theWidth), aFBOVPSizeY (theHeight), aFBOSizeXMax (0), aFBOSizeYMax (0); Standard_Integer aPrevFBOVPSizeX (0), aPrevFBOVPSizeY (0), aPrevFBOSizeXMax (0), aPrevFBOSizeYMax (0); - if (aPrevFBOPtr != NULL) + if (!aPrevFBOPtr.IsNull()) { myView->FBOGetDimensions (aPrevFBOPtr, aPrevFBOVPSizeX, aPrevFBOVPSizeY, @@ -2956,11 +2956,11 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage, } } - if (aFBOPtr == NULL) + if (aFBOPtr.IsNull()) { // Try to create hardware accelerated buffer aFBOPtr = myView->FBOCreate (aFBOVPSizeX, aFBOVPSizeY); - if (aFBOPtr != NULL) + if (!aFBOPtr.IsNull()) { myView->FBOGetDimensions (aFBOPtr, aFBOVPSizeX, aFBOVPSizeY, @@ -2975,7 +2975,7 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage, // If hardware accelerated buffer - try to use onscreen buffer // Results may be bad! - if (aFBOPtr == NULL) + if (aFBOPtr.IsNull()) { // retrieve window sizes Standard_Integer aWinWidth, aWinHeight; @@ -3065,7 +3065,7 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage, { myView->FBORelease (aFBOPtr); } - else if (aPrevFBOPtr != NULL) + else if (!aPrevFBOPtr.IsNull()) { myView->FBOChangeViewport (aPrevFBOPtr, aPrevFBOVPSizeX, aPrevFBOVPSizeY); } diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index c79eb9ba7d..8a3cdc160b 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -4370,9 +4370,9 @@ static int VPrintView (Draw_Interpretor& di, Standard_Integer argc, { if (isTileSizeProvided) { - Handle(Graphic3d_CView) aGraphicView = ViewerTest::CurrentView()->View(); - Graphic3d_PtrFrameBuffer anOldBuffer = aGraphicView->FBO(); - Graphic3d_PtrFrameBuffer aNewBuffer = aGraphicView->FBOCreate (aTileWidth, aTileHeight); + Handle(Graphic3d_CView) aGraphicView = ViewerTest::CurrentView()->View(); + Handle(Standard_Transient) anOldBuffer = aGraphicView->FBO(); + Handle(Standard_Transient) aNewBuffer = aGraphicView->FBOCreate (aTileWidth, aTileHeight); aGraphicView->SetFBO (aNewBuffer); isPrinted = aView->Print (anDC, 1, 1, 0, Aspect_PA_TILE);