<div class="gmail_quote">On Fri, Apr 23, 2010 at 8:23 PM, da <span dir="ltr">&lt;<a href="mailto:remywendy@gmail.com">remywendy@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Hi guys,<div><br></div><div>Does anybody else run into this?</div><div><br></div><div>In order to get interactive mode to work for the chart tests, I&#39;ve changed</div><div><br></div><div><div>  if(retVal == vtkRegressionTester::DO_INTERACTOR)</div>


<div>    {</div><div>    view-&gt;GetInteractor()-&gt;Start();</div><div>    }</div><div><br></div><div>to </div><div><br></div><div><div>  if(retVal == vtkRegressionTester::DO_INTERACTOR)</div><div>    {</div><div>    view-&gt;GetInteractor()-&gt;Initialize();</div>


<div>    view-&gt;GetInteractor()-&gt;Start();</div><div>    }</div><div><br></div><div>for TestPCPlot.cxx (thanks Eric E Monson) , and then ran it with</div><div><br></div><div>&quot;ChartsCxxTests.exe testpcplot -I&quot;</div>


<div><br></div><div>which renders it fine in interactive mode. </div><div>However, the moment I hover my mouse over it - it crashes. (Differently in debug/release modes).</div><div><br></div></div></div></blockquote><div>

This is due to the new color buffer code that was recently added by Francois - your card does not have an OpenGL extension required. My Windows development machine has the same problem. I think Francois intends to detect whether the color buffer has all of the extensions it requires, and fall back to a software method if not.</div>

<div><br></div><div>Note the failed assert you see in the debug version (asserts are compiled out in release mode). For the charts at least, the software methods are already present, and can be disabled by setting a flag on the vtkContextScene.</div>

<div><br></div><div>Thanks,</div><div><br></div><div>Marcus</div></div>