So my Graphic card is a nvidia Quadro FX 1800, OpenGL v3<div>and Nvidia drivers 185.18.36</div><div><br></div><div>Another strange problem in my program and the X server :</div><div><br></div><div>I try to change the color of my lungtree, for example one color per generation.</div>
<div>I use actor-&gt;GetProperty()-&gt;SetColor().</div><div><br></div><div>That&#39;s add 100MB on my server X memory. I dont understand why because my actors for lungtrees branchs already exists, and they already have a default color...</div>
<div><br></div><div>I have tested my program on several computers, with different X Server system, and i always have the 2 problems.</div><div><br></div><div>Thanks for advices,</div><div><br></div><div>Cordialement,<br><br>
-- Mathieu PICCIN<br><br><br>
<br><br><div class="gmail_quote">On Tue, Apr 6, 2010 at 5:47 PM, Francois Bertel <span dir="ltr">&lt;<a href="mailto:francois.bertel@kitware.com">francois.bertel@kitware.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
you can get the version of your driver with:<br>
<br>
$ glxinfo | grep &quot;OpenGL version&quot;<br>
<br>
Again, if the application exited, then this is out of the scope of<br>
VTK. This is a leak on the driver side, this a bug in the nVidia<br>
driver, not in VTK.<br>
<div><div></div><div class="h5"><br>
<br>
On Tue, Apr 6, 2010 at 11:31 AM, Mathieu P &lt;<a href="mailto:mtp.vtk@gmail.com">mtp.vtk@gmail.com</a>&gt; wrote:<br>
&gt; Hello :<br>
&gt; First i am using<br>
&gt; OpenSUSE<br>
&gt; Graphic NVIDIA Quaddro  FX1700<br>
&gt; Dont know the exact nvidia driver version, but recent.<br>
&gt; I am using a QVTKWidget.<br>
&gt; I cannot delete vtkRenderWindow and vtkRenderWindowInteractor because it&#39;s<br>
&gt; done in the QVTKWidget desctructor.<br>
&gt; (i get a crash if i try)<br>
&gt; I have tried to use the mapper :: ImmediateRenderingOn() function. it&#39;s<br>
&gt; partially solve the problem because there is no more display lists loaded in<br>
&gt; the x server, so no memory at the exit, but it&#39;s very slow (very slow frame<br>
&gt; rate ~2), and cannot be used for real time rendering.<br>
&gt; I have also tried to make the rendering window inside the QVTKWidget<br>
&gt; current, and call glDeleteLists(0,0xFFFFFFFF). But no result. I have always<br>
&gt; my 300MB of lung tree datas in the X Server.<br>
&gt; I have no any problem with other 3D applications...<br>
&gt;<br>
&gt; Cordialement,<br>
&gt;<br>
&gt; -- Mathieu PICCIN<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Tue, Apr 6, 2010 at 4:19 PM, Francois Bertel<br>
&gt; &lt;<a href="mailto:francois.bertel@kitware.com">francois.bertel@kitware.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; Hello,<br>
&gt;&gt;<br>
&gt;&gt; If there is a leak in the Xserver after the vtk based program exit<br>
&gt;&gt; then this is out of the scope of VTK.<br>
&gt;&gt;<br>
&gt;&gt; It can be a bug in your X server or it can be some result that the X<br>
&gt;&gt; server caches (it can cache a database of fonts and symbols).<br>
&gt;&gt;<br>
&gt;&gt; What happen when you start/exit another application regarding the X<br>
&gt;&gt; server memory consumption (try a big app like Firefox, try an<br>
&gt;&gt; OpenGL-based app like glxgears)? How do you measure this memory<br>
&gt;&gt; consumption?<br>
&gt;&gt;<br>
&gt;&gt; What&#39;s your OS, graphics cards, graphics card driver?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 2, 2010 at 8:33 AM, Mathieu P &lt;<a href="mailto:mtp.vtk@gmail.com">mtp.vtk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt; Actually i cannot delete vtkRenderWindow or vtkRenderWindowInteractor<br>
&gt;&gt; &gt; without program crash.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I am using QVTKWidget, and i cannot understand why my X Server continue<br>
&gt;&gt; &gt; to<br>
&gt;&gt; &gt; have 300MB loaded in memory after program exit...<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I have already tried some vtkRenderWindow-&gt;Finalize() and<br>
&gt;&gt; &gt; vtkRenderWindowInteractor-&gt;Start()...<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Cordialement,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; -- Mathieu PICCIN<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; On Thu, Apr 1, 2010 at 5:52 PM, Mathieu P &lt;<a href="mailto:mtp.vtk@gmail.com">mtp.vtk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Hi all,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I am loading a huge data set of points (to display lungtrees) with VTK.<br>
&gt;&gt; &gt;&gt; When i exit the application i have 300 MB of memory used by my X<br>
&gt;&gt; &gt;&gt; Server.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I have tried to Delete renderer, renderWindow, renderWindowInteractor,<br>
&gt;&gt; &gt;&gt; without any change.<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; I have also tried to use the VTK WIKI way to delte point, but no<br>
&gt;&gt; &gt;&gt; success...<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Is there a specific way to free memory from the X Server when exiting<br>
&gt;&gt; &gt;&gt; vtk<br>
&gt;&gt; &gt;&gt; ?<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Thanks,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; Cordialement,<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt; -- Mathieu PICCIN<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;&gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Visit other Kitware open-source projects at<br>
&gt;&gt; &gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; &gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; François Bertel, PhD  | Kitware Inc. Suite 204<br>
&gt;&gt; 1 (518) 371 3971 x113 | 28 Corporate Drive<br>
&gt;&gt;                      | Clifton Park NY 12065, USA<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
</div></div>--<br>
<div><div></div><div class="h5">François Bertel, PhD  | Kitware Inc. Suite 204<br>
1 (518) 371 3971 x113 | 28 Corporate Drive<br>
                      | Clifton Park NY 12065, USA<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
</div></div></blockquote></div><br></div>