Use of the Gtk.GLArea in Pygobject GTK3
问题 The documentation for use of the python wrappers for GTk3 are somewhat limited. I have found several of the common widget examples. I am trying to use the Gtk.GLArea widget. The API documentation is for C and I have not had much luck guessing the equivalent python calls to use this widget. In the example the widget is created using the following C code: // create a GtkGLArea instance GtkWidget *gl_area = gtk_gl_area_new (); g_signal_connect (gl_area, "render", G_CALLBACK (render), NULL); Then