Hi, I've been reading in the 'Red Book' of OpenGL, about how to use the Accumulation Buffer <page 303, Chapter 10> But I noticed that it should have some sort of setup:
/*Be certain you request an accumulation buffer.*/
glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB | GLUT_ACCUM | GLUT_DEPTH);
But I didn't find this command in LWJGL, nor GLUT, is there a way to request an accumulation buffer in lwjgl?
Thanx.