summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2011-10-10 20:51:43 +0100
committerJosé Fonseca <jfonseca@vmware.com>2011-10-10 20:51:43 +0100
commit08e88810bd94251ced36df7808508c770c9a1165 (patch)
treea53fb376b22bb9570530d096e373032a0d8e93ed
parentf4608e3117e9a4931770bf96c91c01a934df7de3 (diff)
Add a few comments/links to Cocoa development resources.
-rw-r--r--glws_cocoa.mm15
1 files changed, 14 insertions, 1 deletions
diff --git a/glws_cocoa.mm b/glws_cocoa.mm
index c22a823..a35dcf5 100644
--- a/glws_cocoa.mm
+++ b/glws_cocoa.mm
@@ -1,6 +1,6 @@
/**************************************************************************
*
- * Copyright 2011 Jose Fonseca
+ * Copyright 2011 VMware, Inc.
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -23,6 +23,19 @@
*
**************************************************************************/
+
+/**
+ * Minimal Cocoa integration.
+ *
+ * See also:
+ * - http://developer.apple.com/library/mac/#samplecode/CocoaGL/Introduction/Intro.html
+ * - http://developer.apple.com/library/mac/#samplecode/Cocoa_With_Carbon_or_CPP/Introduction/Intro.html
+ * - http://developer.apple.com/library/mac/#samplecode/glut/Introduction/Intro.html
+ * - http://developer.apple.com/library/mac/#samplecode/GLEssentials/Introduction/Intro.html
+ * - http://www.glfw.org/
+ */
+
+
#include <stdlib.h>
#include <iostream>