<div dir="ltr"><br><div><div>Your problem is in the modified callback. There is no need for this callback since</div><div> while the rendering takes place this callback is invoked many times hence the OpenGL errors.</div><div> So remove: "cellData->AddObserver(vtkCommand::ModifiedEvent,ModifiedCallback);" </div><div> By adding this observer to CellData you are forcing a reload of cell data whenever any event happens during rendering.</div><div><br></div><div>Now, you only need the InteractionEndCallBack observer since you are only interested in updating the end result.</div><div> If you leave in InteractionStartCallBack then the object is updated twice. Once at the start of interaction and then at the end of interaction.</div><div> After all you are only interested in the result after the interaction has ended.</div><div> Also remove "ComputerRGB();" on line 75 as this is not needed since this is called in the thread.</div><div><br></div><div>Addidionally </div><div>"#include <X11/Xlib.h>"</div><div>and</div><div>"XInitThreads();"</div><div><br></div><div>are not needed at all.</div></div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">---------- Forwarded message ----------<br>From: Antonio Fortino <<a href="mailto:thoniorf@gmail.com">thoniorf@gmail.com</a>><br>To: <a href="mailto:vtkusers@vtk.org">vtkusers@vtk.org</a><br>Cc: <br>Date: Wed, 28 Dec 2016 17:59:13 +0100<br>Subject: [vtkusers] update,interact and render in different threads<br><div dir="ltr">Hello to everyone,<div><br></div><div>I'm trying to develop a simple example that update the celldata of a polydata in a thread while rendering in the main thread.</div><div>My final goal is to interact with the scene, and pause the updates.</div><div><br></div><div>To archive this i'm using a simple mutex and a boolean.</div><div>However it seams that i'm trying to access the render for two different threads, and the mutex isn't enough, because when interacting with the scene errors like the one below appears, and at random the program stops with a segmentation.</div><div><br></div><div>
<p style="margin:0px"><span style="color:rgb(170,0,0)">vtkOpenGLPolyDataMapper (0x1b62980): failed after UpdateShader 1 OpenGL errors detected</span></p>
<p style="margin:0px"><span style="color:rgb(170,0,0)">  0 : (1282) Invalid operation</span></p><p style="margin:0px"><span style="color:rgb(170,0,0)"><br></span></p></div><div>I attach the code, any help is very appreciated.</div><div><br></div><div>Best regards</div><div>Antonio Fortino</div><div><br></div><div><br></div><div><div><br></div></div></div>
<br>______________________________<wbr>_________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/<wbr>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" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_<wbr>FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=<wbr>vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/<wbr>mailman/listinfo/vtkusers</a><br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">___________________________________________<br>Andrew J. P. Maclean<br><br>___________________________________________</div>
</div></div>