13 lines
176 B
C++
13 lines
176 B
C++
|
#include <iostream>
|
||
|
#include "glsdlscreen.h"
|
||
|
|
||
|
int main() {
|
||
|
GLSDLScreen screen;
|
||
|
|
||
|
screen.enableOpenGL(true);
|
||
|
screen.setVideoMode(640, 480, 32);
|
||
|
screen.apply();
|
||
|
|
||
|
return 0;
|
||
|
}
|