forcing glutCreateWindow to create the window on a specific monitor in a dual screen setup
I was wondering if there's a way开发者_高级运维 to force the window created using glutCreateWindow (along with the associated command prompt for my application ) to open on a specific monitor in my dual monitor setup. I use one monitor for coding and would like to use the other for actually running my application everytime I fire it.
Thanks !
This is not possible using only glut. Your solution is going to be specific to the operating system that your program runs on.
Getting this to work is going to be far more effort than it is worth considering you want to do this just to speed up your workflow a bit.
精彩评论