X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cfee725b1db209baaefcd80c7218de7292c9dd37..7344108e8a129a3f9b4df5ab0f98a1713db03b89:/interface/wx/glcanvas.h diff --git a/interface/wx/glcanvas.h b/interface/wx/glcanvas.h index ae30b082d0..49a38c958e 100644 --- a/interface/wx/glcanvas.h +++ b/interface/wx/glcanvas.h @@ -3,7 +3,7 @@ // Purpose: interface of wxGLContext and wxGLCanvas // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -137,7 +137,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 +215,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;