Consider the following line of code:
::CGContextRef cgContext = cocoa::createCgBitmapContext( surface );
How come there\'s no names
:: without any namespace name before it means it refers Global Namespace.
::
means refer to CGContextRef in the Global Namespace.
CGContextRef