Explain in detail what functions are provided by the settings in the line:
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH);
So far, I know that this line initializes the display mode by requesting a double buffer setting the RGBA window mode and requesting the depth buffer, but how can I explain this more simply. I want to describe each argument in plain English
Tacit source share