libsegl/testprog.cpp

15 lines
186 B
C++
Raw Normal View History

#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
return 0;
}