X-Git-Url: https://git.ralfj.de/gltest.git/blobdiff_plain/fde2054e0dde32f04596d7f20fba7f9aeba3dbdd..14716b59eedd024453c5d904a619d63a0f0fed85:/gltest.cpp diff --git a/gltest.cpp b/gltest.cpp index ed45ac6..feb794f 100644 --- a/gltest.cpp +++ b/gltest.cpp @@ -99,15 +99,16 @@ protected: virtual void resizeGL(unsigned int width, unsigned int height) { - /* prevent divide-by-zero */ - if (height == 0) - height = 1; + // prevent divide-by-zero + if (height == 0) + height = 1; glViewport(0, 0, width, height); - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); + glMatrixMode(GL_PROJECTION); + glLoadIdentity(); glOrtho (0, 1, 1, 0, 0, 1); - glMatrixMode(GL_MODELVIEW); - glClear(GL_COLOR_BUFFER_BIT); + glMatrixMode(GL_MODELVIEW); + glClearColor(0.0f, 0.0f, 0.0f, 0.0f); + glClear(GL_COLOR_BUFFER_BIT); glFlush(); }