1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026915: Visualization - return Handle from Graphic3d_CView::FBOCreate() instead of a pointer

OpenGl_View::FBO() - use copy Handle constructor for compatibility.
This commit is contained in:
kgv 2015-11-23 14:16:08 +03:00 committed by bugmaster
parent 6bd94e0de9
commit b128c89231
14 changed files with 85 additions and 100 deletions

View File

@ -301,7 +301,7 @@ void D3DHost_View::Redraw()
{ {
return; return;
} }
else if (myFBO != NULL) else if (!myFBO.IsNull())
{ {
OpenGl_View::Redraw(); OpenGl_View::Redraw();
return; return;
@ -310,9 +310,9 @@ void D3DHost_View::Redraw()
Handle(OpenGl_Context) aCtx = myWorkspace->GetGlContext(); Handle(OpenGl_Context) aCtx = myWorkspace->GetGlContext();
myToFlipOutput = Standard_True; myToFlipOutput = Standard_True;
myD3dWglFbo->LockSurface (aCtx); myD3dWglFbo->LockSurface (aCtx);
myFBO = myD3dWglFbo.get(); myFBO = myD3dWglFbo;
OpenGl_View::Redraw(); OpenGl_View::Redraw();
myFBO = NULL; myFBO.Nullify();
myD3dWglFbo->UnlockSurface (aCtx); myD3dWglFbo->UnlockSurface (aCtx);
myToFlipOutput = Standard_False; myToFlipOutput = Standard_False;
if (aCtx->caps->buffersNoSwap) if (aCtx->caps->buffersNoSwap)
@ -351,7 +351,7 @@ void D3DHost_View::RedrawImmediate()
{ {
return; return;
} }
else if (myFBO != NULL) else if (!myFBO.IsNull())
{ {
OpenGl_View::Redraw(); OpenGl_View::Redraw();
return; return;
@ -359,9 +359,9 @@ void D3DHost_View::RedrawImmediate()
myToFlipOutput = Standard_True; myToFlipOutput = Standard_True;
myD3dWglFbo->LockSurface (aCtx); myD3dWglFbo->LockSurface (aCtx);
myFBO = myD3dWglFbo.get(); myFBO = myD3dWglFbo;
OpenGl_View::RedrawImmediate(); OpenGl_View::RedrawImmediate();
myFBO = NULL; myFBO.Nullify();
myD3dWglFbo->UnlockSurface (aCtx); myD3dWglFbo->UnlockSurface (aCtx);
myToFlipOutput = Standard_False; myToFlipOutput = Standard_False;
if (aCtx->caps->buffersNoSwap) if (aCtx->caps->buffersNoSwap)

View File

@ -95,7 +95,6 @@ Graphic3d_NameOfTexturePlane.hxx
Graphic3d_NListOfHAsciiString.hxx Graphic3d_NListOfHAsciiString.hxx
Graphic3d_NMapOfTransient.hxx Graphic3d_NMapOfTransient.hxx
Graphic3d_PriorityDefinitionError.hxx Graphic3d_PriorityDefinitionError.hxx
Graphic3d_PtrFrameBuffer.hxx
Graphic3d_RenderingMode.hxx Graphic3d_RenderingMode.hxx
Graphic3d_RenderingParams.hxx Graphic3d_RenderingParams.hxx
Graphic3d_SequenceOfGroup.hxx Graphic3d_SequenceOfGroup.hxx

View File

@ -30,7 +30,6 @@
#include <Graphic3d_GraduatedTrihedron.hxx> #include <Graphic3d_GraduatedTrihedron.hxx>
#include <Graphic3d_MapOfStructure.hxx> #include <Graphic3d_MapOfStructure.hxx>
#include <Graphic3d_NMapOfTransient.hxx> #include <Graphic3d_NMapOfTransient.hxx>
#include <Graphic3d_PtrFrameBuffer.hxx>
#include <Graphic3d_RenderingParams.hxx> #include <Graphic3d_RenderingParams.hxx>
#include <Graphic3d_SequenceOfHClipPlane.hxx> #include <Graphic3d_SequenceOfHClipPlane.hxx>
#include <Graphic3d_SequenceOfStructure.hxx> #include <Graphic3d_SequenceOfStructure.hxx>
@ -349,28 +348,28 @@ public:
const Graphic3d_ZLayerSettings& theSettings) = 0; const Graphic3d_ZLayerSettings& theSettings) = 0;
//! Returns pointer to an assigned framebuffer object. //! 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. //! 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. //! Generate offscreen FBO in the graphic library.
//! If not supported on hardware returns NULL. //! If not supported on hardware returns NULL.
virtual Graphic3d_PtrFrameBuffer FBOCreate (const Standard_Integer theWidth, virtual Handle(Standard_Transient) FBOCreate (const Standard_Integer theWidth,
const Standard_Integer theHeight) = 0; const Standard_Integer theHeight) = 0;
//! Remove offscreen FBO from the graphic library //! 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. //! Read offscreen FBO configuration.
virtual void FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, virtual void FBOGetDimensions (const Handle(Standard_Transient)& theFbo,
Standard_Integer& theWidth, Standard_Integer& theWidth,
Standard_Integer& theHeight, Standard_Integer& theHeight,
Standard_Integer& theWidthMax, Standard_Integer& theWidthMax,
Standard_Integer& theHeightMax) = 0; Standard_Integer& theHeightMax) = 0;
//! Change offscreen FBO viewport. //! 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 theWidth,
const Standard_Integer theHeight) = 0; const Standard_Integer theHeight) = 0;

View File

@ -38,7 +38,6 @@
#include <Graphic3d_Vec3.hxx> #include <Graphic3d_Vec3.hxx>
#include <Standard_ShortReal.hxx> #include <Standard_ShortReal.hxx>
#include <Standard_Address.hxx> #include <Standard_Address.hxx>
#include <Graphic3d_PtrFrameBuffer.hxx>
#include <Image_PixMap.hxx> #include <Image_PixMap.hxx>
#include <Graphic3d_BufferType.hxx> #include <Graphic3d_BufferType.hxx>
#include <Aspect_Handle.hxx> #include <Aspect_Handle.hxx>

View File

@ -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*/

View File

@ -37,7 +37,6 @@
#include <Graphic3d_TypeOfComposition.hxx> #include <Graphic3d_TypeOfComposition.hxx>
#include <Graphic3d_ExportFormat.hxx> #include <Graphic3d_ExportFormat.hxx>
#include <Graphic3d_SortType.hxx> #include <Graphic3d_SortType.hxx>
#include <Graphic3d_PtrFrameBuffer.hxx>
#include <Graphic3d_Array1OfVertex.hxx> #include <Graphic3d_Array1OfVertex.hxx>
#include <Graphic3d_Array2OfVertex.hxx> #include <Graphic3d_Array2OfVertex.hxx>
#include <Graphic3d_BufferType.hxx> #include <Graphic3d_BufferType.hxx>

View File

@ -70,7 +70,6 @@ OpenGl_View::OpenGl_View (const Handle(Graphic3d_StructureManager)& theMgr,
myFog (myDefaultFog), myFog (myDefaultFog),
myZClip (myDefaultZClip), myZClip (myDefaultZClip),
myCamera (new Graphic3d_Camera()), myCamera (new Graphic3d_Camera()),
myFBO (NULL),
myUseGLLight (Standard_True), myUseGLLight (Standard_True),
myToShowTrihedron (false), myToShowTrihedron (false),
myToShowGradTrihedron (false), myToShowGradTrihedron (false),
@ -517,26 +516,26 @@ void OpenGl_View::SetZLayerSettings (const Graphic3d_ZLayerId theLayerId,
//function : FBO //function : FBO
//purpose : //purpose :
//======================================================================= //=======================================================================
Graphic3d_PtrFrameBuffer OpenGl_View::FBO() const Handle(Standard_Transient) OpenGl_View::FBO() const
{ {
return reinterpret_cast<Graphic3d_PtrFrameBuffer> (myFBO); return Handle(Standard_Transient)(myFBO);
} }
//======================================================================= //=======================================================================
//function : SetFBO //function : SetFBO
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_View::SetFBO (const Graphic3d_PtrFrameBuffer theFBO) void OpenGl_View::SetFBO (const Handle(Standard_Transient)& theFbo)
{ {
myFBO = reinterpret_cast<OpenGl_FrameBuffer*> (theFBO); myFBO = Handle(OpenGl_FrameBuffer)::DownCast (theFbo);
} }
//======================================================================= //=======================================================================
//function : FBOCreate //function : FBOCreate
//purpose : //purpose :
//======================================================================= //=======================================================================
Graphic3d_PtrFrameBuffer OpenGl_View::FBOCreate (const Standard_Integer theWidth, Handle(Standard_Transient) OpenGl_View::FBOCreate (const Standard_Integer theWidth,
const Standard_Integer theHeight) const Standard_Integer theHeight)
{ {
return myWorkspace->FBOCreate (theWidth, theHeight); return myWorkspace->FBOCreate (theWidth, theHeight);
} }
@ -545,22 +544,34 @@ Graphic3d_PtrFrameBuffer OpenGl_View::FBOCreate (const Standard_Integer theWidth
//function : FBORelease //function : FBORelease
//purpose : //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 //function : FBOGetDimensions
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_View::FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr, void OpenGl_View::FBOGetDimensions (const Handle(Standard_Transient)& theFbo,
Standard_Integer& theWidth, Standard_Integer& theWidth,
Standard_Integer& theHeight, Standard_Integer& theHeight,
Standard_Integer& theWidthMax, Standard_Integer& theWidthMax,
Standard_Integer& theHeightMax) 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 theWidth = aFrameBuffer->GetVPSizeX(); // current viewport size
theHeight = aFrameBuffer->GetVPSizeY(); theHeight = aFrameBuffer->GetVPSizeY();
theWidthMax = aFrameBuffer->GetSizeX(); // texture size theWidthMax = aFrameBuffer->GetSizeX(); // texture size
@ -571,11 +582,16 @@ void OpenGl_View::FBOGetDimensions (const Graphic3d_PtrFrameBuffer theFBOPtr,
//function : FBOChangeViewport //function : FBOChangeViewport
//purpose : //purpose :
//======================================================================= //=======================================================================
void OpenGl_View::FBOChangeViewport (Graphic3d_PtrFrameBuffer& theFBOPtr, void OpenGl_View::FBOChangeViewport (const Handle(Standard_Transient)& theFbo,
const Standard_Integer theWidth, const Standard_Integer theWidth,
const Standard_Integer theHeight) 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); aFrameBuffer->ChangeViewport (theWidth, theHeight);
} }

View File

@ -233,28 +233,28 @@ public:
const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE; const Graphic3d_ZLayerSettings& theSettings) Standard_OVERRIDE;
//! Returns pointer to an assigned framebuffer object. //! 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. //! 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. //! Generate offscreen FBO in the graphic library.
//! If not supported on hardware returns NULL. //! If not supported on hardware returns NULL.
Standard_EXPORT virtual Graphic3d_PtrFrameBuffer FBOCreate (const Standard_Integer theWidth, Standard_EXPORT virtual Handle(Standard_Transient) FBOCreate (const Standard_Integer theWidth,
const Standard_Integer theHeight) Standard_OVERRIDE; const Standard_Integer theHeight) Standard_OVERRIDE;
//! Remove offscreen FBO from the graphic library //! 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. //! 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& theWidth,
Standard_Integer& theHeight, Standard_Integer& theHeight,
Standard_Integer& theWidthMax, Standard_Integer& theWidthMax,
Standard_Integer& theHeightMax) Standard_OVERRIDE; Standard_Integer& theHeightMax) Standard_OVERRIDE;
//! Change offscreen FBO viewport. //! 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 theWidth,
const Standard_Integer theHeight) Standard_OVERRIDE; const Standard_Integer theHeight) Standard_OVERRIDE;
@ -569,7 +569,7 @@ protected:
OPENGL_ZCLIP myZClip; OPENGL_ZCLIP myZClip;
Graphic3d_SequenceOfHClipPlane myClipPlanes; Graphic3d_SequenceOfHClipPlane myClipPlanes;
Handle(Graphic3d_Camera) myCamera; Handle(Graphic3d_Camera) myCamera;
OpenGl_FrameBuffer* myFBO; Handle(OpenGl_FrameBuffer) myFBO;
Standard_Boolean myUseGLLight; Standard_Boolean myUseGLLight;
Standard_Boolean myToShowTrihedron; Standard_Boolean myToShowTrihedron;
Standard_Boolean myToShowGradTrihedron; Standard_Boolean myToShowGradTrihedron;

View File

@ -343,7 +343,7 @@ Standard_Boolean OpenGl_View::Print (const Aspect_Handle thePrinterDC,
// Frame buffer initialization // Frame buffer initialization
OpenGl_FrameBuffer* aFrameBuffer = NULL; OpenGl_FrameBuffer* aFrameBuffer = NULL;
OpenGl_FrameBuffer* aPrevBuffer = (OpenGl_FrameBuffer*)myFBO; OpenGl_FrameBuffer* aPrevBuffer = myFBO.operator->();
Standard_Integer aFrameWidth (0), aFrameHeight (0), Standard_Integer aFrameWidth (0), aFrameHeight (0),
aPrevBufferX (0), aPrevBufferY (0); aPrevBufferX (0), aPrevBufferY (0);

View File

@ -284,7 +284,7 @@ void OpenGl_View::Redraw()
// set resolution ratio // set resolution ratio
aCtx->SetResolutionRatio (RenderingParams().ResolutionRatio()); aCtx->SetResolutionRatio (RenderingParams().ResolutionRatio());
OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )myFBO; OpenGl_FrameBuffer* aFrameBuffer = myFBO.operator->();
bool toSwap = aCtx->IsRender() bool toSwap = aCtx->IsRender()
&& !aCtx->caps->buffersNoSwap && !aCtx->caps->buffersNoSwap
&& aFrameBuffer == NULL; && aFrameBuffer == NULL;
@ -521,7 +521,7 @@ void OpenGl_View::RedrawImmediate()
const Graphic3d_StereoMode aStereoMode = myRenderParams.StereoMode; const Graphic3d_StereoMode aStereoMode = myRenderParams.StereoMode;
Graphic3d_Camera::Projection aProjectType = myCamera->ProjectionType(); Graphic3d_Camera::Projection aProjectType = myCamera->ProjectionType();
OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )myFBO; OpenGl_FrameBuffer* aFrameBuffer = myFBO.operator->();
if ( aFrameBuffer == NULL if ( aFrameBuffer == NULL
&& !aCtx->DefaultFrameBuffer().IsNull() && !aCtx->DefaultFrameBuffer().IsNull()

View File

@ -1084,45 +1084,39 @@ Standard_Boolean OpenGl_Workspace::IsCullingEnabled() const
// function : FBOCreate // function : FBOCreate
// purpose : // purpose :
// ======================================================================= // =======================================================================
Graphic3d_PtrFrameBuffer OpenGl_Workspace::FBOCreate (const Standard_Integer theWidth, Handle(OpenGl_FrameBuffer) OpenGl_Workspace::FBOCreate (const Standard_Integer theWidth,
const Standard_Integer theHeight) const Standard_Integer theHeight)
{ {
// activate OpenGL context // activate OpenGL context
if (!Activate()) if (!Activate())
return NULL; return Handle(OpenGl_FrameBuffer)();
// create the FBO // create the FBO
const Handle(OpenGl_Context)& aCtx = GetGlContext(); 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)) if (!aFrameBuffer->Init (aCtx, theWidth, theHeight, GL_RGBA8, GL_DEPTH24_STENCIL8, 0))
{ {
aFrameBuffer->Release (aCtx.operator->()); aFrameBuffer->Release (aCtx.operator->());
delete aFrameBuffer; return Handle(OpenGl_FrameBuffer)();
return NULL;
} }
return (Graphic3d_PtrFrameBuffer )aFrameBuffer; return aFrameBuffer;
} }
// ======================================================================= // =======================================================================
// function : FBORelease // function : FBORelease
// purpose : // purpose :
// ======================================================================= // =======================================================================
void OpenGl_Workspace::FBORelease (Graphic3d_PtrFrameBuffer theFBOPtr) void OpenGl_Workspace::FBORelease (Handle(OpenGl_FrameBuffer)& theFbo)
{ {
// activate OpenGL context // activate OpenGL context
if (!Activate() if (!Activate()
|| theFBOPtr == NULL) || theFbo.IsNull())
{ {
return; return;
} }
// release the object theFbo->Release (GetGlContext().operator->());
OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer*)theFBOPtr; theFbo.Nullify();
if (aFrameBuffer != NULL)
{
aFrameBuffer->Release (GetGlContext().operator->());
}
delete aFrameBuffer;
} }
inline bool getDataFormat (const Image_PixMap& theData, inline bool getDataFormat (const Image_PixMap& theData,
@ -1209,9 +1203,9 @@ inline Standard_Size getAligned (const Standard_Size theNumber,
// function : BufferDump // function : BufferDump
// purpose : // purpose :
// ======================================================================= // =======================================================================
Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFBOPtr, Standard_Boolean OpenGl_Workspace::BufferDump (const Handle(OpenGl_FrameBuffer)& theFbo,
Image_PixMap& theImage, Image_PixMap& theImage,
const Graphic3d_BufferType& theBufferType) const Graphic3d_BufferType& theBufferType)
{ {
GLenum aFormat, aType; GLenum aFormat, aType;
if (theImage.IsEmpty() if (theImage.IsEmpty()
@ -1230,9 +1224,9 @@ Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFB
#endif #endif
// bind FBO if used // bind FBO if used
if (theFBOPtr != NULL && theFBOPtr->IsValid()) if (!theFbo.IsNull() && theFbo->IsValid())
{ {
theFBOPtr->BindBuffer (GetGlContext()); theFbo->BindBuffer (GetGlContext());
} }
else else
{ {
@ -1290,9 +1284,9 @@ Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFB
glPixelStorei (GL_PACK_ROW_LENGTH, 0); glPixelStorei (GL_PACK_ROW_LENGTH, 0);
#endif #endif
if (theFBOPtr != NULL && theFBOPtr->IsValid()) if (!theFbo.IsNull() && theFbo->IsValid())
{ {
theFBOPtr->UnbindBuffer (GetGlContext()); theFbo->UnbindBuffer (GetGlContext());
} }
else else
{ {

View File

@ -16,7 +16,6 @@
#ifndef _OpenGl_Workspace_Header #ifndef _OpenGl_Workspace_Header
#define _OpenGl_Workspace_Header #define _OpenGl_Workspace_Header
#include <Graphic3d_PtrFrameBuffer.hxx>
#include <Graphic3d_BufferType.hxx> #include <Graphic3d_BufferType.hxx>
#include <InterfaceGraphic_Graphic3d.hxx> #include <InterfaceGraphic_Graphic3d.hxx>
@ -128,13 +127,13 @@ public:
const Handle(OpenGl_Context)& GetGlContext() { return myGlContext; } 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, Standard_Boolean BufferDump (const Handle(OpenGl_FrameBuffer)& theFbo,
Image_PixMap& theImage, Image_PixMap& theImage,
const Graphic3d_BufferType& theBufferType); const Graphic3d_BufferType& theBufferType);
Standard_EXPORT Standard_Integer Width() const; Standard_EXPORT Standard_Integer Width() const;

View File

@ -2940,11 +2940,11 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage,
const V3d_StereoDumpOptions theStereoOptions) const V3d_StereoDumpOptions theStereoOptions)
{ {
// always prefer hardware accelerated offscreen buffer // always prefer hardware accelerated offscreen buffer
Graphic3d_PtrFrameBuffer aFBOPtr = NULL; Handle(Standard_Transient) aFBOPtr;
Graphic3d_PtrFrameBuffer aPrevFBOPtr = myView->FBO(); Handle(Standard_Transient) aPrevFBOPtr = myView->FBO();
Standard_Integer aFBOVPSizeX (theWidth), aFBOVPSizeY (theHeight), aFBOSizeXMax (0), aFBOSizeYMax (0); Standard_Integer aFBOVPSizeX (theWidth), aFBOVPSizeY (theHeight), aFBOSizeXMax (0), aFBOSizeYMax (0);
Standard_Integer aPrevFBOVPSizeX (0), aPrevFBOVPSizeY (0), aPrevFBOSizeXMax (0), aPrevFBOSizeYMax (0); Standard_Integer aPrevFBOVPSizeX (0), aPrevFBOVPSizeY (0), aPrevFBOSizeXMax (0), aPrevFBOSizeYMax (0);
if (aPrevFBOPtr != NULL) if (!aPrevFBOPtr.IsNull())
{ {
myView->FBOGetDimensions (aPrevFBOPtr, myView->FBOGetDimensions (aPrevFBOPtr,
aPrevFBOVPSizeX, aPrevFBOVPSizeY, 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 // Try to create hardware accelerated buffer
aFBOPtr = myView->FBOCreate (aFBOVPSizeX, aFBOVPSizeY); aFBOPtr = myView->FBOCreate (aFBOVPSizeX, aFBOVPSizeY);
if (aFBOPtr != NULL) if (!aFBOPtr.IsNull())
{ {
myView->FBOGetDimensions (aFBOPtr, myView->FBOGetDimensions (aFBOPtr,
aFBOVPSizeX, aFBOVPSizeY, aFBOVPSizeX, aFBOVPSizeY,
@ -2975,7 +2975,7 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage,
// If hardware accelerated buffer - try to use onscreen buffer // If hardware accelerated buffer - try to use onscreen buffer
// Results may be bad! // Results may be bad!
if (aFBOPtr == NULL) if (aFBOPtr.IsNull())
{ {
// retrieve window sizes // retrieve window sizes
Standard_Integer aWinWidth, aWinHeight; Standard_Integer aWinWidth, aWinHeight;
@ -3065,7 +3065,7 @@ Standard_Boolean V3d_View::ToPixMap (Image_PixMap& theImage,
{ {
myView->FBORelease (aFBOPtr); myView->FBORelease (aFBOPtr);
} }
else if (aPrevFBOPtr != NULL) else if (!aPrevFBOPtr.IsNull())
{ {
myView->FBOChangeViewport (aPrevFBOPtr, aPrevFBOVPSizeX, aPrevFBOVPSizeY); myView->FBOChangeViewport (aPrevFBOPtr, aPrevFBOVPSizeX, aPrevFBOVPSizeY);
} }

View File

@ -4370,9 +4370,9 @@ static int VPrintView (Draw_Interpretor& di, Standard_Integer argc,
{ {
if (isTileSizeProvided) if (isTileSizeProvided)
{ {
Handle(Graphic3d_CView) aGraphicView = ViewerTest::CurrentView()->View(); Handle(Graphic3d_CView) aGraphicView = ViewerTest::CurrentView()->View();
Graphic3d_PtrFrameBuffer anOldBuffer = aGraphicView->FBO(); Handle(Standard_Transient) anOldBuffer = aGraphicView->FBO();
Graphic3d_PtrFrameBuffer aNewBuffer = aGraphicView->FBOCreate (aTileWidth, aTileHeight); Handle(Standard_Transient) aNewBuffer = aGraphicView->FBOCreate (aTileWidth, aTileHeight);
aGraphicView->SetFBO (aNewBuffer); aGraphicView->SetFBO (aNewBuffer);
isPrinted = aView->Print (anDC, 1, 1, 0, Aspect_PA_TILE); isPrinted = aView->Print (anDC, 1, 1, 0, Aspect_PA_TILE);