]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/glcanvas.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / glcanvas.h
index 646a546d9906152ca5eb1d38edfebf36798d9a38..49d120ef62299b3da8a256e0740c6aba83e3a9fd 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        glcanvas.h
 // Purpose:     interface of wxGLContext and wxGLCanvas
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -137,7 +136,7 @@ enum
     /// 1 for multisampling support (antialiasing)
     WX_GL_SAMPLE_BUFFERS,
 
-    /// 4 for 2x2 antialising supersampling on most graphics cards
+    /// 4 for 2x2 antialiasing supersampling on most graphics cards
     WX_GL_SAMPLES
 
 };
@@ -215,7 +214,7 @@ public:
             constants. If a constant should be followed by a value, put it in
             the next array position. For example, WX_GL_DEPTH_SIZE should be
             followed by the value that indicates the number of bits for the
-            depth buffer, e.g:
+            depth buffer, e.g.:
             @code
             attribList[n++] = WX_GL_DEPTH_SIZE;
             attribList[n++] = 32;