标签: c opengl glut
如果我设置GLUT函数调用:
glutKeyboardFunc(handleKeys);
如何将其删除?
答案 0 :(得分:2)
只需传入NULL:
NULL
glutKeyboardFunc(NULL);