Does the bare LWJGL distribution use hardware rendering or software rendering?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
LWJGL always uses hardware rendering. Since it is a games library, it just quits if no hardware rendering is available.
From the LWJGL wiki: "Made the library throw an exception when hardware acceleration is not available on Windows. No point in running at 5fps is there? "(LWJGL wiki)
There is a command-line switch
org.lwjgl.opengl.Display.allowSoftwareOpenGLbut I don’t think you can force it to use software rendering.