Graphics
Intel® graphics drivers and software, compatibility, troubleshooting, performance, and optimization
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
22750 Discussions

Downgrading the OpenGL on Intel HD Graphics 520?

JAban
Novice
2,727 Views

Hi all, how to downgrade the graphics drivers version (Graphics Control Panel shows actually 21.20.16.4590) of my brandnew laptop, so that it then supports OpenGL 4.2 (or lower) version instead of the installed OpenGL 4.4 version.

It is a Dell inspiron 5559 Signature Edition, Intel i5-6200 U CPU, Intel HD Graphics 520.

I want the laptop to perform GLSL shaders that I've designed on a Lenovo laptop supporting OpenGL 4.2. My shaders are using functions that have been deprecated in OpenGL 4.4. I received the ERROR messages telling that gl_ModelViewMatrix, gl_Vertex, gl_Normalmatrix and gl_Normal are not available in current GLSL version.

Thanks in advance for any solution.

0 Kudos
3 Replies
Stefan3D
Honored Contributor II
1,773 Views

Start both pixel and vertex shader with

# version 420

If that fails go to developer forum for further support: https://software.intel.com/en-us/forums/developing-games-and-graphics-on-intel Developing Games & Graphics on Intel

0 Kudos
JAban
Novice
1,773 Views

Thanks Stefan for your suggestions. Unfortunately # version 420 doesn't work.

0 Kudos
JAban
Novice
1,773 Views

I found the solution. I just needed to write:

# version 440 compatibility

and the shaders work fine.

Thanks.

Reply