Split out application delegate into separate class, minor formatting.

This commit is contained in:
Camilla Berglund
2010-09-16 03:05:55 +02:00
parent 33b2195fb9
commit 6ab8cd62d5
3 changed files with 94 additions and 39 deletions
+2 -6
View File
@@ -94,20 +94,16 @@ typedef struct _GLFWwindowNS
//------------------------------------------------------------------------
typedef struct _GLFWlibraryNS
{
// Timer data
struct {
double t0;
} timer;
// dlopen handle for dynamically-loading extension function pointers
// dlopen handle for dynamically loading OpenGL extension entry points
void* OpenGLFramework;
int unbundled;
id desktopMode;
id delegate;
id autoreleasePool;
} _GLFWlibraryNS;