view src/gtkglextmm-test.cpp @ 1389:ef40c5eb0a31

fix website URLs of package: metis
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 17 Nov 2010 03:36:25 +0100
parents 6f81712a503b
children f653602a0500
line wrap: on
line source

/* This file is part of mingw-cross-env.       */
/* See doc/index.html for further information. */

#include <gtkmm/main.h>
#include <gtkmm/gl/init.h>

int main(int argc, char *argv[])
{
    Gtk::Main g(argc, argv);
    Gtk::GL::init(argc, argv);
    g.run();
    return 0;
}