Archive for September, 2009

Test – C++ Highlighting

Posted on September 28th, 2009 by Andreas  |  Comments Off

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 [...]

Mac OSX 10.6 – Snow Leopard – Carbon

Posted on September 24th, 2009 by Andreas  |  Comments Off

I just upgraded one of our development MacBooks to Snow Leopard.
Good news, everything is up and running … faster.
Bad news our framework for OSX is based on Carbon and lots of the functions and methods we use are deprecated or removed.
Looks like I finally have no choice and have to port the framework to Cocoa.
Back [...]