mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0026492: OpenGl_FrameBuffer does not releases itself correctly
Logic related to myIsOwnBuffer flag in OpenGl_FrameBuffer was corrected.
This commit is contained in:
parent
825aa485a3
commit
a447178e3f
@ -62,6 +62,8 @@ Standard_Boolean OpenGl_FrameBuffer::Init (const Handle(OpenGl_Context)& theGlCo
|
|||||||
// clean up previous state
|
// clean up previous state
|
||||||
Release (theGlContext.operator->());
|
Release (theGlContext.operator->());
|
||||||
|
|
||||||
|
myIsOwnBuffer = true;
|
||||||
|
|
||||||
// setup viewport sizes as is
|
// setup viewport sizes as is
|
||||||
myVPSizeX = theSizeX;
|
myVPSizeX = theSizeX;
|
||||||
myVPSizeY = theSizeY;
|
myVPSizeY = theSizeY;
|
||||||
@ -164,6 +166,8 @@ Standard_Boolean OpenGl_FrameBuffer::InitWithRB (const Handle(OpenGl_Context)& t
|
|||||||
// clean up previous state
|
// clean up previous state
|
||||||
Release (theGlCtx.operator->());
|
Release (theGlCtx.operator->());
|
||||||
|
|
||||||
|
myIsOwnBuffer = true;
|
||||||
|
|
||||||
// setup viewport sizes as is
|
// setup viewport sizes as is
|
||||||
myVPSizeX = theSizeX;
|
myVPSizeX = theSizeX;
|
||||||
myVPSizeY = theSizeY;
|
myVPSizeY = theSizeY;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user