<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">---------- Forwarded message ---------<br>From: <b class="gmail_sendername" dir="auto">Konrad LEY</b> <span dir="ltr"><<a href="mailto:konrad.ley@valeo.com">konrad.ley@valeo.com</a>></span><br>Date: Mon, Jul 2, 2018 at 3:50 PM<br>Subject: Re: [vtkusers] Run VTK with OpenGL ES 2.0 backend<br>To:  <<a href="mailto:dan.lipsa@kitware.com">dan.lipsa@kitware.com</a>><br></div><br><br><div dir="ltr"><div>Hello Dan,</div><div><br></div><div>thank you very much for the info.</div><div><br></div><div>What a pity! Is there no chance for me to manually switch to the OpenGL ES backend?</div><div><br></div><div>What you are saying is also what i'm experiencing:</div><div><br></div><div>For example when i run the simple Sphere example <a href="https://www.vtk.org/Wiki/VTK/Examples/Cxx/GeometricObjects/Sphere" target="_blank">https://www.vtk.org/Wiki/VTK/Examples/Cxx/GeometricObjects/Sphere</a> i get the output:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>sh-4.3# ./Sphere</div></div><div><div>libGL error: unable to load driver: xilinx_drm_dri.so</div></div><div><div>libGL error: driver pointer missing</div></div><div><div>libGL error: failed to load driver: xilinx_drm</div></div><div><div>ERROR: In /home/root/Downloads/VTK-8.1.1/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx, line 785</div></div><div><div>vtkXOpenGLRenderWindow (0x19641d50): GLEW could not be initialized.</div></div></blockquote><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div><br></div></div><div><div>Segmentation fault</div></div></blockquote><div><br></div><div>According to this post <a href="https://forums.xilinx.com/t5/Embedded-Linux/libGL-error-unable-to-load-driver-xilinx-drm-dri-so/td-p/853905" target="_blank">https://forums.xilinx.com/t5/Embedded-Linux/libGL-error-unable-to-load-driver-xilinx-drm-dri-so/td-p/853905</a> that means that vtk is not using OpenGL ES 2.<br></div><div><br></div><div>When i force vtk to use EGLRenderWindow and change the Code of the simple Sphere example to:</div><div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><br></div><div><div>#include <vtkSphereSource.h></div></div><div><div>#include <vtkPolyData.h></div></div><div><div>#include <vtkSmartPointer.h></div></div><div><div>#include <vtkPolyDataMapper.h></div></div><div><div>#include <vtkActor.h></div></div><div><div>#include <vtkEGLRenderWindow.h></div></div><div><div>#include <vtkRenderer.h></div></div><div><div>#include <vtkRenderWindowInteractor.h></div></div><div><div>#include <vtkNamedColors.h></div></div><div><div>#include <vtkProperty.h></div></div><div><div><br></div></div><div><div>int main(int, char *[])</div></div><div><div>{</div></div><div><div>  vtkSmartPointer<vtkNamedColors> colors =</div></div><div><div>    vtkSmartPointer<vtkNamedColors>::New();</div></div><div><div><br></div></div><div><div>  // Create a sphere</div></div><div><div>  vtkSmartPointer<vtkSphereSource> sphereSource = </div></div><div><div>    vtkSmartPointer<vtkSphereSource>::New();</div></div><div><div>  sphereSource->SetCenter(0.0, 0.0, 0.0);</div></div><div><div>  sphereSource->SetRadius(5.0);</div></div><div><div>  // Make the surface smooth.</div></div><div><div>  sphereSource->SetPhiResolution(100);</div></div><div><div>  sphereSource->SetThetaResolution(100);</div></div><div><div><br></div></div><div><div>  vtkSmartPointer<vtkPolyDataMapper> mapper = </div></div><div><div>    vtkSmartPointer<vtkPolyDataMapper>::New();</div></div><div><div>  mapper->SetInputConnection(sphereSource->GetOutputPort());</div></div><div><div>  </div></div><div><div>  vtkSmartPointer<vtkActor> actor = </div></div><div><div>    vtkSmartPointer<vtkActor>::New();</div></div><div><div>  actor->SetMapper(mapper);</div></div><div><div>  actor->GetProperty()->SetColor(colors->GetColor3d("Cornsilk").GetData());</div></div><div><div><br></div></div><div><div>  vtkSmartPointer<vtkRenderer> renderer = </div></div><div><div>    vtkSmartPointer<vtkRenderer>::New();</div></div><div><div>  vtkSmartPointer<vtkRenderWindow> renderWindow = </div></div><div><div>    vtkSmartPointer<vtkEGLRenderWindow>::New();</div></div><div><div>  renderWindow->SetWindowName("Sphere");</div></div><div><div>  renderWindow->AddRenderer(renderer);</div></div><div><div>//  vtkSmartPointer<vtkRenderWindowInteractor> renderWindowInteractor = </div></div><div><div>//    vtkSmartPointer<vtkRenderWindowInteractor>::New();</div></div><div><div>//  renderWindowInteractor->SetRenderWindow(renderWindow);</div></div><div><div><br></div></div><div><div>  renderer->AddActor(actor);</div></div><div><div>  renderer->SetBackground(colors->GetColor3d("DarkGreen").GetData());</div></div><div><div><br></div></div><div><div>  renderWindow->Render();</div></div><div><div>//  renderWindowInteractor->Start();</div></div><div><div><br></div></div><div><div>  return EXIT_SUCCESS;</div></div><div><div>}</div></div></blockquote></div><div><br></div><div>I get the error message:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>Warning: In /home/root/Downloads/VTK-8.1.1/Rendering/OpenGL2/vtkEGLRenderWindow.cxx, line 273</div></div><div><div>vtkEGLRenderWindow (0x1ca53d50): Setting an EGL display to device index: 0 require EGL_EXT_device_base EGL_EXT_platform_device EGL_EXT_platform_base extensions</div></div><div><div><br></div></div><div><div>ERROR: In /home/root/Downloads/VTK-8.1.1/Rendering/OpenGL2/vtkEGLRenderWindow.cxx, line 356</div></div><div><div>vtkEGLRenderWindow (0x1ca53d50): No matching EGL configuration found.</div></div><div><div><br></div></div><div><div>ERROR: In /home/root/Downloads/VTK-8.1.1/Rendering/OpenGL2/vtkOpenGLRenderWindow.cxx, line 785</div></div><div><div>vtkEGLRenderWindow (0x1ca53d50): GLEW could not be initialized.</div></div><div><div><br></div></div><div><div>Segmentation fault</div></div><div><br></div></blockquote><div>So still VTK wants to use GLEW, thus full OpenGL.</div><div><br></div><div>Is there a way to configure/patch VTK so it uses OpenGL ES 2.0 like in the Android configuration?</div><div><br></div><div>Konrad</div><div><br></div><div class="gmail_quote"><div dir="ltr">On Thu, Jul 5, 2018 at 3:51 PM Dan Lipsa <<a href="mailto:dan.lipsa@kitware.com" target="_blank">dan.lipsa@kitware.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Konrad,<div>I believe OpenGL ES is only supported for mobile architectures</div><div><a href="https://blog.kitware.com/building-vtk-for-mobile-architectures/" target="_blank">https://blog.kitware.com/building-vtk-for-mobile-architectures/</a><br></div><div><br></div><div>The desktop version, including the version compiled for EGL requires full OpenGL</div><div><a href="https://blog.kitware.com/off-screen-rendering-through-the-native-platform-interface-egl/" target="_blank">https://blog.kitware.com/off-screen-rendering-through-the-native-platform-interface-egl/</a><br></div><div><br></div><div>Dan</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Jun 27, 2018 at 11:33 AM Konrad LEY <<a href="mailto:konrad.ley@valeo.com" target="_blank">konrad.ley@valeo.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Hello,</div><div><br></div><div>I'm trying to run VTK on a Ultra96 board, which has a Mali-400 MP2 gpu supporting OpenGL ES 2.0.</div><div>According to <a href="https://blog.kitware.com/raspberry-pi-likes-vtk/" target="_blank">https://blog.kitware.com/raspberry-pi-likes-vtk/</a> VTK has a OpenGL ES 2.0 backend and runs on EGL.</div><div>So I installed the libmali-dev package of my petalinux linux distribution, which is providing me the following files:</div><div><br></div><div>/usr/include/EGL/egl.h</div><div>/usr/include/EGL/eglext.h<br></div><div>/usr/include/EGL/eglplatform.h<br></div><div>/usr/include/GLES/gl.h<br></div><div>/usr/include/GLES/glext.h<br></div><div><div>/usr/include/GLES/glplatform.h</div><div><div>/usr/include/GLES2/gl2.h<br></div><div>/usr/include/GLES2/gl2ext.h<br></div><div><div>/usr/include/GLES2/gl2platform.h</div><div>/usr/include/KHR/khrplatform.h<br></div></div>/usr/lib/libEGL.so</div><div>/usr/lib/libGLESv1_CM.so</div><div>/usr/lib/libGLESv2.so</div><div>/usr/lib/libMali.so</div><div>/usr/lib/pkconfig/egl.pc</div><div>/usr/lib/pkconfig/glesv1.pc</div><div>/usr/lib/pkconfig/glesv1_cm.pc</div><div>/usr/lib/pkgconfig/glesv2.pc</div><div><br></div><div>I can compile and run examples using OpenGL ES 2.0 now.</div><div><br></div><div>Then I downloaded latest VTK-8.1.1 and ran cmake in the build folder. It complained about not finding OpenGL so I also installed libgl-mesa-dev package which is providing me:</div><div><br></div><div>/usr/include/GL/gl.h</div><div>/usr/include/GL/gl_mangle.h</div><div>/usr/include/GL/glcorearb.h</div><div>/usr/include/GL/glext.h</div><div>/usr/include/GL/interal/dri_interface.h</div><div>/usr/include/GL/mesa_glinterop.h</div><div>/usr/include/GL/osmesa.h</div><div>/usr/include/GL/wglext.h</div><div>/usr/lib/libGL.la</div><div>/usr/lib/libGL.so</div><div>/usr/lib/pkgconfig/gl.pc</div><div><br></div><div>After that CMake configuration completed.</div><div><br></div><div>In the CMakeCache.txt I found out that VTK_HAS_EGL was set to OFF. I turned it ON.</div><div>Then cmake complained about not finding EGL. So I had to manually set</div><div><br></div><div>EGL_INCLUDE_DIR=/usr/include/EGL</div><div>EGL_LIBRARY=/usr/lib/libEGL.so</div><div>EGL_opengl_LIBRARY=/usr/lib/libGLESv2.so</div><div><br></div><div>Compiling and installing works fine, but when I run the Sphere example it returns the error:</div><div><br></div><div> ~# ./Sphere</div><div> libGL error: unable to load driver: xilinx_drm_dri.so</div><div> libGL error: driver pointer missing</div><div> libGL error: failed to load driver: xilinx_drm<br></div><div> ERROR: In /home/root/Downloads/VTK-8.1.1/Rendering/OpenGL/vtkOpenGLRenderWindow.cxx, line 785</div><div> vtkXOpenGLRenderWindow (0x25503fc0): GLEW could not be initialized.</div><div><br></div><div> Segmentation fault</div><div><br></div><div>How can I build for OpenGL ES 2.0 only?</div><div><br></div><div>Correct me but I think there's something wrong when I have to install OpenGL with the libgl-mesa-dev package. Also GLEW is for Desktop OpenGL only?<br></div></div><div><br></div><div>-- <br><div class="m_-3855074692924804176gmail-m_-5263901073621295468m_799337999736523796gmail-m_8710953065467586986gmail-m_7752806530380879878m_-525670236815245451m_-5737811885742136214gmail-m_-3134506375531946539gmail_signature"><div dir="ltr"><div><div><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">Viele Grüße / </font><span style="color:rgb(34,34,34);font-family:arial,helvetica,sans-serif;font-size:small">Best regards / </span><a href="http://dict.leo.org/frde/index_de.html#/search=Sinc%C3%A8res&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px none;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">Sincères</a><span style="font-family:arial,helvetica,sans-serif;font-size:small;color:rgb(70,78,144);line-height:19px;background-color:rgb(255,253,248)"> </span><a href="http://dict.leo.org/frde/index_de.html#/search=salutations&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px none;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">salutations</a><br><font size="2" face="sans-serif">Konrad Ley<br></font></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">System Engineer Software<br></font><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Comfort and Driving Assistance Systems (CDA)</span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Driving Assistance Research (DAR) </span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Site Kronach</span><font size="2" face="sans-serif"><br></font>Hummendorfer Str. 72</div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px">96317 Kronach<br><br>Phone: <font size="2" face="sans-serif"><br>E-Mail: <a href="mailto:vorname.nachname@valeo.com" style="color:rgb(0,0,0)" target="_blank">konrad.ley@valeo.com</a></font> <br><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr" style="color:rgb(34,34,34);font-family:arial,sans-serif"><div style="font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><div style="color:rgb(34,34,34);font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><span style="font-family:arial,helvetica,sans-serif;color:rgb(80,0,80);font-size:x-small">Valeo Schalter und Sensoren GmbH</span><br></div></span></div><div style="color:rgb(34,34,34);font-size:12.8px"><font style="color:rgb(80,0,80)" size="1"><span style="font-family:arial,helvetica,sans-serif">Laiernstrasse 12</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">74321 Bietigheim-Bissingen, </span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Sitz der Gesellschaft: 74321 Bietigheim-Bissingen</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Handelsregister: Amtsgericht Stuttgart - HRB 301795</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Vorsitzender des Aufsichtsrates: </span></font><span style="color:rgb(80,0,80);font-family:Arial,sans-serif;font-size:10px">Derrick Zechmair</span><font style="color:rgb(80,0,80)" size="1"><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Geschäftsführer: </span></font><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Jens Hälker, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Martin Mandry, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Stiv Michael Smudja, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Pierre-Yves Veltois</span></div></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</div>
<br>
<pre><font size="2" face="Arial"><i>This e-mail message is intended only for the use of the intended recipient(s).
The information contained therein may be confidential or privileged,
and its disclosure or reproduction is strictly prohibited.
If you are not the intended recipient, please return it immediately to its sender 
at the above address and destroy it.<span style="color:rgb(136,136,136);white-space:pre-wrap;background-color:rgb(255,255,255)"> </span></i></font></pre></div></div>
</div></div>

<br>
<pre><font size="2" face="Arial"><i>This e-mail message is intended for the internal use of the intended recipient(s) only.
The information contained herein is confidential/privileged. Its disclosure or reproduction is strictly prohibited.
If you are not the intended recipient, please inform the sender immediately, do not disclose it internally or to third parties and destroy it.</i></font></pre>_______________________________________________<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/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_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=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">https://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div>
</blockquote></div><br clear="all"><br>-- <br><div dir="ltr" class="m_-3855074692924804176gmail-m_-5263901073621295468m_799337999736523796gmail-m_8710953065467586986gmail-m_7752806530380879878gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">Viele Grüße / </font><span style="color:rgb(34,34,34);font-family:arial,helvetica,sans-serif;font-size:small">Best regards / </span><a href="http://dict.leo.org/frde/index_de.html#/search=Sinc%C3%A8res&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px none;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">Sincères</a><span style="font-family:arial,helvetica,sans-serif;font-size:small;color:rgb(70,78,144);line-height:19px;background-color:rgb(255,253,248)"> </span><a href="http://dict.leo.org/frde/index_de.html#/search=salutations&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px none;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">salutations</a><br><font size="2" face="sans-serif">Konrad Ley<br></font></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">System Engineer Software<br></font><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Comfort and Driving Assistance Systems (CDA)</span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Driving Assistance Research (DAR) </span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Site Kronach</span><font size="2" face="sans-serif"><br></font>Hummendorfer Str. 72</div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px">96317 Kronach<br><br>Phone: <font size="2" face="sans-serif"><br>E-Mail: <a href="mailto:vorname.nachname@valeo.com" style="color:rgb(0,0,0)" target="_blank">konrad.ley@valeo.com</a></font> <br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><img src="http://www.valeo.com/medias/images/topemployer/2016/logo-valeo.jpg" width="96" height="42"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><img src="http://valeo.com/medias/images/topemployer/2018/top-employer-germany-en-2018.png" width="96" height="43"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr" style="color:rgb(34,34,34);font-family:arial,sans-serif"><div style="font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><div style="color:rgb(34,34,34);font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><span style="font-family:arial,helvetica,sans-serif;color:rgb(80,0,80);font-size:x-small">Valeo Schalter und Sensoren GmbH</span><br></div></span></div><div style="color:rgb(34,34,34);font-size:12.8px"><font style="color:rgb(80,0,80)" size="1"><span style="font-family:arial,helvetica,sans-serif">Laiernstrasse 12</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">74321 Bietigheim-Bissingen, </span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Sitz der Gesellschaft: 74321 Bietigheim-Bissingen</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Handelsregister: Amtsgericht Stuttgart - HRB 301795</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Vorsitzender des Aufsichtsrates: </span></font><span style="color:rgb(80,0,80);font-family:Arial,sans-serif;font-size:10px">Derrick Zechmair</span><font style="color:rgb(80,0,80)" size="1"><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Geschäftsführer: </span></font><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Jens Hälker, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Martin Mandry, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Stiv Michael Smudja, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Pierre-Yves Veltois</span></div></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</div>
<br>
<pre><font size="2" face="Arial"><i>This e-mail message is intended only for the use of the intended recipient(s).
The information contained therein may be confidential or privileged,
and its disclosure or reproduction is strictly prohibited.
If you are not the intended recipient, please return it immediately to its sender 
at the above address and destroy it.<span style="color:rgb(136,136,136);white-space:pre-wrap;background-color:rgb(255,255,255)"> </span></i></font></pre></div></div></div></div></div>
</div><br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">Viele Grüße / </font><span style="color:rgb(34,34,34);font-family:arial,helvetica,sans-serif;font-size:small">Best regards / </span><a href="http://dict.leo.org/frde/index_de.html#/search=Sinc%C3%A8res&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">Sincères</a><span style="font-family:arial,helvetica,sans-serif;font-size:small;color:rgb(70,78,144);line-height:19px;background-color:rgb(255,253,248)"> </span><a href="http://dict.leo.org/frde/index_de.html#/search=salutations&searchLoc=1&resultOrder=basic&multiwordShowSingle=on&pos=2" style="color:rgb(70,78,144);font-family:arial,helvetica,sans-serif;font-size:small;margin:0px;padding:0px;border:0px;font-stretch:inherit;line-height:19px;vertical-align:baseline;text-decoration:none;background-color:rgb(255,253,248)" target="_blank">salutations</a><br><font size="2" face="sans-serif">Konrad Ley<br></font></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><font size="2" face="sans-serif">System Engineer Software<br></font><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Comfort and Driving Assistance Systems (CDA)</span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Driving Assistance Research (DAR) </span></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:12.8px">Site Kronach</span><font size="2" face="sans-serif"><br></font>Hummendorfer Str. 72</div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px">96317 Kronach<br><br>Phone: <font size="2" face="sans-serif"><br>E-Mail: <a href="mailto:vorname.nachname@valeo.com" style="color:rgb(0,0,0)!important" target="_blank">konrad.ley@valeo.com</a></font> <br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><img src="http://www.valeo.com/medias/images/topemployer/2016/logo-valeo.jpg" width="96" height="42"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><img src="http://valeo.com/medias/images/topemployer/2018/top-employer-germany-en-2018.png" width="96" height="43"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><br></div><div style="color:rgb(51,51,51);font-family:Arial,Verdana,sans-serif;font-size:13.3333px"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr" style="color:rgb(34,34,34);font-family:arial,sans-serif"><div style="font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><div style="color:rgb(34,34,34);font-size:12.8px"><span style="font-size:12.8px"><div style="color:rgb(0,0,0)"><span style="font-family:arial,helvetica,sans-serif;color:rgb(80,0,80);font-size:x-small">Valeo Schalter und Sensoren GmbH</span><br></div></span></div><div style="color:rgb(34,34,34);font-size:12.8px"><font style="color:rgb(80,0,80)" size="1"><span style="font-family:arial,helvetica,sans-serif">Laiernstrasse 12</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">74321 Bietigheim-Bissingen, </span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Sitz der Gesellschaft: 74321 Bietigheim-Bissingen</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Handelsregister: Amtsgericht Stuttgart - HRB 301795</span><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Vorsitzender des Aufsichtsrates: </span></font><span style="color:rgb(80,0,80);font-family:Arial,sans-serif;font-size:10px">Derrick Zechmair</span><font style="color:rgb(80,0,80)" size="1"><br style="font-family:arial,helvetica,sans-serif"><span style="font-family:arial,helvetica,sans-serif">Geschäftsführer: </span></font><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Jens Hälker, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Martin Mandry, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Stiv Michael Smudja, </span><span style="color:rgb(80,0,80);font-family:arial,helvetica,sans-serif;font-size:x-small">Pierre-Yves Veltois</span></div></div></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>
</div>
<br>
<pre><font size="2" face="Arial"><i>This e-mail message is intended only for the use of the intended recipient(s).
The information contained therein may be confidential or privileged,
and its disclosure or reproduction is strictly prohibited.
If you are not the intended recipient, please return it immediately to its sender 
at the above address and destroy it.<span style="color:rgb(136,136,136);white-space:pre-wrap;background-color:rgb(255,255,255)"> </span></i></font></pre></div></div></div></div></div>

<br>
<pre><font face="Arial" size="2"><i>This e-mail message is intended for the internal use of the intended recipient(s) only.
The information contained herein is confidential/privileged. Its disclosure or reproduction is strictly prohibited.
If you are not the intended recipient, please inform the sender immediately, do not disclose it internally or to third parties and destroy it.</i></font></pre>