switch (event.type) {
case Expose:
/* we'll redraw below */
- reshape(event.xexpose.width, event.xexpose.height);
break;
case ConfigureNotify:
reshape(event.xconfigure.width, event.xconfigure.height);
int
main(int argc, char *argv[])
{
+ const int winWidth = 300, winHeight = 300;
Display *dpy;
Window win;
GLXContext ctx;
return -1;
}
- make_window(dpy, "glxgears", 0, 0, 300, 300, &win, &ctx);
+ make_window(dpy, "glxgears", 0, 0, winWidth, winHeight, &win, &ctx);
XMapWindow(dpy, win);
glXMakeCurrent(dpy, win, ctx);
init();
+ /* Set initial projection/viewing transformation.
+ * We can't be sure we'll get a ConfigureNotify event when the window
+ * first appears.
+ */
+ reshape(winWidth, winHeight);
+
event_loop(dpy, win);
glDeleteLists(gear1, 1);