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

OCC22377 Patch for visualization component

This commit is contained in:
APL 2011-05-19 10:55:02 +00:00 committed by bugmaster
parent ba39a6a34b
commit 47d31ec6a4
4 changed files with 47 additions and 17 deletions

View File

@ -527,7 +527,7 @@ TsmPopAttri( void )
if( attri_tail->TransPers.mode != node->TransPers.mode ||
attri_tail->TransPers.pointX != node->TransPers.pointX ||
attri_tail->TransPers.pointY != node->TransPers.pointY ||
attri_tail->TransPers.pointZ != node->TransPers.pointX )
attri_tail->TransPers.pointZ != node->TransPers.pointZ )
{
transform_persistence_begin( attri_tail->TransPers.mode,

View File

@ -120,6 +120,8 @@ from higher API */
#include <OpenGl_tgl_util.hxx>
#include <OpenGl_Memory.hxx>
#include <OpenGl_graduatedtrihedron.hxx>
#include <OpenGl_ResourceCleaner.hxx>
#include <OpenGl_ResourceTexture.hxx>
/*----------------------------------------------------------------------*/
/*
@ -759,20 +761,39 @@ void
call_subr_close_ws( CALL_DEF_VIEW * aview )
{
CMN_KEY_DATA key;
#ifdef OCC1188
tsm_bg_texture texture;
TsmGetWSAttri( aview->WsId, WSBgTexture, &key );
texture = (tsm_bg_texture)key.pdata;
if( texture == 0 )
return;
if ( texture->texId != 0 )
glDeleteTextures( 1,(GLuint *)&(texture->texId) );
#endif
CMN_KEY_DATA textureKey;
TsmGetWSAttri( aview->WsId, WSWindow, &key );
#ifdef OCC1188
tsm_bg_texture texture;
WINDOW aWnd = (WINDOW) key.ldata;
TsmGetWSAttri( aview->WsId, WSBgTexture, &textureKey );
texture = (tsm_bg_texture)textureKey.pdata;
if ( texture != 0 && texture->texId != 0 )
{
OpenGl_ResourceCleaner* anCleaner = OpenGl_ResourceCleaner::GetInstance();
// Delete the texture with ResourceCleaner; if it is not possible
// do this directly with proper context selected
if ( !anCleaner->AddResource( TxglGetContext(aWnd),
new OpenGl_ResourceTexture(texture->texId) ) )
{
GLCONTEXT cur_context = GET_GL_CONTEXT();
GLDRAWABLE cur_drawable = GET_GLDEV_CONTEXT();
if ( TxglWinset( call_thedisplay, aWnd ) == TSuccess )
glDeleteTextures( 1,(GLuint *)&(texture->texId) );
// activate the previous context for this thread
GL_MAKE_CURRENT( call_thedisplay, cur_drawable, cur_context );
}
}
#endif
#ifdef RIC120302
if( !aview->GContext )
#endif

View File

@ -95,6 +95,7 @@ call_togl_redraw
call_togl_redraw_layer2d (aview, anunderlayer);
}
call_func_redraw_all_structs_proc (aview->WsId);
call_subr_displayCB (aview, OCC_REDRAW_WINDOW | OCC_PRE_OVERLAY);
if (anoverlayer->ptrLayer)
{
call_togl_redraw_layer2d (aview, anoverlayer);
@ -172,6 +173,7 @@ call_togl_redraw_area
call_togl_redraw_layer2d (aview, anunderlayer);
}
call_func_redraw_all_structs_proc (aview->WsId);
call_subr_displayCB (aview, OCC_REDRAW_WINDOWAREA | OCC_PRE_OVERLAY);
if (anoverlayer->ptrLayer)
{
call_togl_redraw_layer2d (aview, anoverlayer);

View File

@ -302,7 +302,6 @@ __declspec( dllexport ) int __fastcall __OpenGl_INIT__ (
/* recover display lists from dead_ctx, then destroy it */
ctx = glXCreateContext( disp, vis, dead_ctx, GL_TRUE );
glXDestroyContext(dead_dpy, dead_ctx);
dead_ctx = 0;
} else if (previous_ctx == 0) {
ctx = glXCreateContext( disp, vis, NULL, GL_TRUE );
} else {
@ -311,9 +310,16 @@ __declspec( dllexport ) int __fastcall __OpenGl_INIT__ (
}
previous_ctx = ctx;
if( !ctx) return TFailure;
if( ctx )
OpenGl_ResourceCleaner::GetInstance()->AppendContext( ctx, true );
OpenGl_ResourceCleaner::GetInstance()->AppendContext( ctx, true );
// remove the dead_ctx for ResourceCleaner after appending shared ctx
if (dead_ctx) {
OpenGl_ResourceCleaner::GetInstance()->RemoveContext(dead_ctx);
dead_ctx = 0;
}
if( !ctx) return TFailure;
cmap = XCreateColormap( disp, par, vis->visual, AllocNone );
@ -783,7 +789,6 @@ __declspec( dllexport ) int __fastcall __OpenGl_INIT__ (
/* FSXXX sync necessary if non-direct rendering */
glXWaitGL();
OpenGl_ResourceCleaner::GetInstance()->RemoveContext( ctx );
_Txgl_Map.UnBind( win );
if (previous_ctx == ctx) {
@ -800,12 +805,14 @@ __declspec( dllexport ) int __fastcall __OpenGl_INIT__ (
* losing any shared display lists (fonts...)
*/
if (previous_ctx) {
OpenGl_ResourceCleaner::GetInstance()->RemoveContext(ctx);
glXDestroyContext(disp, ctx);
} else {
dead_ctx = ctx;
dead_dpy = disp;
}
} else {
OpenGl_ResourceCleaner::GetInstance()->RemoveContext(ctx);
glXDestroyContext(disp, ctx);
}