Skip to main content
4 votes

Why does my machine render OpenGL using my onboard chipset instead of my graphics card?

For Windows and GLFW - You can compile glfw library by yourself and add to cmake GLFW_USE_HYBRID_HPG option. More info here - Compiling GLFW
ShatterFry's user avatar
3 votes
Accepted

Game not responding on different computer with Intel graphics

After I gave my rendering code another look, I noticed that I was using glCreateVertexArrays and glCreateBuffers instead of glGenVertexArrays and glGenVertexBuffers. While they do the same thing, ...
Eric's user avatar
  • 41

Only top scored, non community-wiki answers of a minimum length are eligible