Java Hardware Acceleration not working with Intel Integrated Graphics

后端 未结 2 1565
别那么骄傲
别那么骄傲 2020-12-15 00:01

Hi everyone I hope someone can help me solve this problem. I\'m having trouble getting hardware acceleration to work on a laptop with Intel Integrated Graphics.

The

相关标签:
2条回答
  • 2020-12-15 00:12

    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
    

    0 讨论(0)
  • 2020-12-15 00:24

    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 :)

    0 讨论(0)
提交回复
热议问题