mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +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
|
||||
Release (theGlContext.operator->());
|
||||
|
||||
myIsOwnBuffer = true;
|
||||
|
||||
// setup viewport sizes as is
|
||||
myVPSizeX = theSizeX;
|
||||
myVPSizeY = theSizeY;
|
||||
@ -164,6 +166,8 @@ Standard_Boolean OpenGl_FrameBuffer::InitWithRB (const Handle(OpenGl_Context)& t
|
||||
// clean up previous state
|
||||
Release (theGlCtx.operator->());
|
||||
|
||||
myIsOwnBuffer = true;
|
||||
|
||||
// setup viewport sizes as is
|
||||
myVPSizeX = theSizeX;
|
||||
myVPSizeY = theSizeY;
|
||||
|
Loading…
x
Reference in New Issue
Block a user