Java Hardware Acceleration not working with Intel Integrated Graphics

早过忘川 提交于 2019-11-28 21:41:11

I just figured it out for anyone who is having this same issue. It was the type of JRE installed. I had the 32bit JRE environment installed on a 64bit machine and for some reason it wasn't utilizing the integrated Intel graphics chip. However after installing the appropriate 64bit JRE, page flipping and hardware acceleration work with the Intel integrated chip.

You can download other versions of the JRE at: http://www.oracle.com/technetwork/java/javase/downloads/jre7-downloads-1880261.html

Really strange can't believe I stumbled upon the answer. Hope this helps someone in the future :)

Try setting the environmental variable J2D_D3D_NO_HWCHECK to "true".


First Method

Control Panel -> System -> Advanced system settings -> Environment Variables -> System variables -> New ->

         Variable name: J2D_D3D_NO_HWCHECK
         Variable value: true

Second Method

In the batch file:

         set J2D_D3D_NO_HWCHECK=true

         java -jar myapp.jar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!