Thread: [wxVTK] wxVTK samples - cannot delete wxVTKRenderWindowInteractor
Brought to you by:
malat
From: Marco <tsu...@si...> - 2007-12-31 11:17:01
|
Dear all, I am trying to run your sample applications without any modification. Everything works fine until I close the window when the application crashes. Debugging the code, I see it crashes trying to delete the wxVTKRenderWindowInteractor in the wxFrame destructor. Any advice? Here is my system configuration: Ubuntu 7.10 Linux 2.6.22 gcc 4.1.3 vtk 5.0.3 wxGTK 2.6.3 wxVTK 1.2 Thank you in advance, Marco |
From: Mathieu M. <mat...@gm...> - 2008-01-01 19:52:11
|
Do you have a wxGTK 1.X installed on your system ? Thanks, -Mathieu On Dec 31, 2007 12:16 PM, Marco <tsu...@si...> wrote: > Dear all, > > I am trying to run your sample applications without any modification. > Everything works fine until I close the window when the application > crashes. Debugging the code, I see it crashes trying to delete the > wxVTKRenderWindowInteractor in the wxFrame destructor. Any advice? > Here is my system configuration: > > Ubuntu 7.10 > Linux 2.6.22 > gcc 4.1.3 > vtk 5.0.3 > wxGTK 2.6.3 > wxVTK 1.2 > > Thank you in advance, > Marco > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Wxvtk-users mailing list > Wxv...@li... > https://lists.sourceforge.net/lists/listinfo/wxvtk-users > -- Mathieu |
From: Marco <tsu...@si...> - 2008-01-01 22:11:07
|
wxGTK 1.X? Do you mean gtk 1.X? I have both gtk 1.2 and 2.0 installed on my system but I am using gtk 2.0 and wxGTK 2.6. Mathieu Malaterre ha scritto: > Do you have a wxGTK 1.X installed on your system ? > > Thanks, > -Mathieu > > On Dec 31, 2007 12:16 PM, Marco <tsu...@si...> wrote: >> Dear all, >> >> I am trying to run your sample applications without any modification. >> Everything works fine until I close the window when the application >> crashes. Debugging the code, I see it crashes trying to delete the >> wxVTKRenderWindowInteractor in the wxFrame destructor. Any advice? >> Here is my system configuration: >> >> Ubuntu 7.10 >> Linux 2.6.22 >> gcc 4.1.3 >> vtk 5.0.3 >> wxGTK 2.6.3 >> wxVTK 1.2 |
From: Mathieu M. <mat...@gm...> - 2008-01-02 08:23:56
|
I have seen those kind of weird bugs happen when there is a mismatch of gtl version (you are including gtk 1.X at compile time, and linking against gtk 2.x at link time...) At some point wxGTK 2.4 had some issues, but wxGTK 2.6.3 should be fine. The last thing I have seen is that KDE does not behave totally like GNOME, when talking to the X11 server. Last but not least, are you sure you configured your hardware accelerated OpenGL driver correctly, ie can you run glxgears ? -Mathieu On Jan 1, 2008 11:10 PM, Marco <tsu...@si...> wrote: > wxGTK 1.X? > > Do you mean gtk 1.X? > > I have both gtk 1.2 and 2.0 installed on my system but I am using > > gtk 2.0 and wxGTK 2.6. > > > > Mathieu Malaterre ha scritto: > > Do you have a wxGTK 1.X installed on your system ? > > > > Thanks, > > -Mathieu > > > > On Dec 31, 2007 12:16 PM, Marco <tsu...@si...> wrote: > >> Dear all, > >> > >> I am trying to run your sample applications without any modification. > >> Everything works fine until I close the window when the application > >> crashes. Debugging the code, I see it crashes trying to delete the > >> wxVTKRenderWindowInteractor in the wxFrame destructor. Any advice? > >> Here is my system configuration: > >> > >> Ubuntu 7.10 > >> Linux 2.6.22 > >> gcc 4.1.3 > >> vtk 5.0.3 > >> wxGTK 2.6.3 > >> wxVTK 1.2 > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Wxvtk-users mailing list > Wxv...@li... > https://lists.sourceforge.net/lists/listinfo/wxvtk-users > -- Mathieu |
From: Marco <tsu...@si...> - 2008-01-02 09:48:38
|
Mathieu Malaterre ha scritto: > I have seen those kind of weird bugs happen when there is a mismatch > of gtl version (you are including gtk 1.X at compile time, and linking > against gtk 2.x at link time...) > At some point wxGTK 2.4 had some issues, but wxGTK 2.6.3 should be fine. > The last thing I have seen is that KDE does not behave totally like > GNOME, when talking to the X11 server. I am using GNOME. > Last but not least, are you sure you configured your hardware > accelerated OpenGL driver correctly, ie can you run glxgears ? Yes, It works. Going a little bit deeper in the debugging I see it crashes trying to unregister the render window. >>> On Dec 31, 2007 12:16 PM, Marco <tsu...@si...> wrote: >>>> Dear all, >>>> >>>> I am trying to run your sample applications without any modification. >>>> Everything works fine until I close the window when the application >>>> crashes. Debugging the code, I see it crashes trying to delete the >>>> wxVTKRenderWindowInteractor in the wxFrame destructor. Any advice? >>>> Here is my system configuration: >>>> >>>> Ubuntu 7.10 >>>> Linux 2.6.22 >>>> gcc 4.1.3 >>>> vtk 5.0.3 >>>> wxGTK 2.6.3 >>>> wxVTK 1.2 |