我是JOGL的初学者,只知道它的名字,它在计算机图形学中使用。现在,如果在JOGL中调整图形窗口和视口转换的大小,我想知道什么。如果可能的话,那怎么办呢?
答案 0 :(得分:1)
是的,这是可能的。
通常,您的reshape()
应该类似于:
@Override
public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) {
GL4 gl4 = drawable.getGL().getGL4();
gl4.glViewport(0, 0, width, height);
// update all resources depending on the window size
// such as the projection matrix
}