Browse Source

Add fullscreen for Raspberry Pi

master
Krisjanis Rijnieks 11 years ago
parent
commit
31784a33a6
  1. 6
      example/src/main.cpp

6
example/src/main.cpp

@ -3,6 +3,10 @@
int main()
{
ofSetupOpenGL(600, 500, OF_WINDOW);
#ifdef TARGET_RASPBERRY_PI
ofSetupOpenGL(600, 500, OF_FULLSCREEN);
#else
ofSetupOpenGL(600, 500, OF_WINDOW);
#endif
ofRunApp(new ofApp());
}
Loading…
Cancel
Save