<div dir="ltr">VTK needs OpenGL 3.2 so if your VM has an option for that, that would be the best route. If not you can use Mesa to provide an OpenGL 3.2 implementation for your VM.  While parts of VTK may work with OpenGL 3.0 others may crash because they rely on 3.2 features.</div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Sep 17, 2017 at 10:49 PM, Chandrasekhar B <span dir="ltr"><<a href="mailto:chandrasekhar@waveaxis.com" target="_blank">chandrasekhar@waveaxis.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I have a crash when importing stl file in the virtual machine.</div>I am using VTK 7.1 version. The crash is because of the GLSL version supported by the VM.<div>The GL version supported by VM is 3.0.</div><div><br></div><div>I have fixed this issue in the following function by adding the following code.</div><div><br></div><div><div>unsigned int vtkOpenGLShaderCache::<wbr>ReplaceShaderValues(</div><div>  std::string &VSSource,</div><div>  std::string &FSSource,</div><div>  std::string &GSSource)</div></div><div>{</div><div><br></div><div><div>if (glMajorVersion >= 3)</div><div>    {</div><div>    version = "#version 150\n";</div><div><span style="white-space:pre-wrap">      </span>if (glMajorVersion == 3 && glMinorVersion == 0)</div><div><span style="white-space:pre-wrap">  </span>{</div><div><span style="white-space:pre-wrap">                </span>version = "#version 130\n";</div><div><span style="white-space:pre-wrap">    </span>}</div></div><div>}</div><div><br></div><div>Just wanted to check, is this right fix?</div><div>How do I support GL 3.0 using VTK 7.1?</div><div>or do I need to upgrade to later version of VTK?</div><div>Currently, all the VMs we have use GL 1.3.</div><div><br></div><div>Regards</div><div>Shekar</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>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div>Ken Martin PhD<div>Distinguished Engineer<br><span style="font-size:12.8px">Kitware Inc.</span><br></div><div>28 Corporate Drive<br>Clifton Park NY 12065<br><div><br></div><div><span style="font-size:10pt;font-family:Tahoma,sans-serif">This communication,
including all attachments, contains confidential and legally privileged
information, and it is intended only for the use of the addressee.  Access to this email by anyone else is
unauthorized. If you are not the intended recipient, any disclosure, copying,
distribution or any action taken in reliance on it is prohibited and may be
unlawful. If you received this communication in error please notify us
immediately and destroy the original message. 
Thank you.</span></div></div></div></div></div>
</div>