2008-02-10 20:50:42 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include "glsdlscreen.h"
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
GLSDLScreen screen;
|
|
|
|
|
|
|
|
screen.enableOpenGL(true);
|
|
|
|
screen.setVideoMode(640, 480, 32);
|
|
|
|
screen.apply();
|
|
|
|
|
2008-02-10 22:23:52 +01:00
|
|
|
// whee
|
|
|
|
|
2008-02-10 20:50:42 +01:00
|
|
|
return 0;
|
|
|
|
}
|