J*********r 发帖数: 5921 | 1 使得用户无法resize我创建的这个窗口?在网上搜了一堆方法(比如glutReshapeFunc(
NULL)),都没起作用。。 |
a**********s 发帖数: 588 | 2 They should be:
glutPositionWindow
glutReshapeWindow
You can also specify the position and shape upon creation |
J*********r 发帖数: 5921 | 3 用户还是可以方便的用鼠标resize window阿。。我现在就是想禁止用户这么做。
【在 a**********s 的大作中提到】 : They should be: : glutPositionWindow : glutReshapeWindow : You can also specify the position and shape upon creation
|
a**********s 发帖数: 588 | 4 oh... sorry... there is no officially supported way in glut. You can either
hack into glut source code, or use OpenGLUT instead (which doesn't seem to
be done in a quite neat way).
【在 J*********r 的大作中提到】 : 用户还是可以方便的用鼠标resize window阿。。我现在就是想禁止用户这么做。
|
w***n 发帖数: 1084 | 5 Don't use GLUT in this case. You should use some functions from windows API
instead.
glutReshapeFunc(
【在 J*********r 的大作中提到】 : 使得用户无法resize我创建的这个窗口?在网上搜了一堆方法(比如glutReshapeFunc( : NULL)),都没起作用。。
|