Test - C++ Highlighting
Just wanted to test if syntax highlighting of code works correctly in our blog, but instead I posted actual code from our framework. This is all that’s needed to get an OpenGL Viewport/Window/Screen on any supported platform.
int main( int argc, char* argv[] ) { Platform::initialize( argc, argv ); Platform::run( &g;_application, 320, 480 ); Platform::shutdown(); } ps: By the screensize you might be able to deduce the platform I copied this from ;)