mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-21 21:35:06 +00:00
Fix various typos
Found via `codespell -q 3 -L ake,extrem,lod,parms`
This commit is contained in:
parent
062067f2ba
commit
4a757ac7c0
@ -106,7 +106,7 @@ _Note: you may need to call `make` in the **auto** folder first_
|
|||||||
|
|
||||||
#### Using cmake
|
#### Using cmake
|
||||||
|
|
||||||
The cmake build is mostly contributer maintained.
|
The cmake build is mostly contributor maintained.
|
||||||
Due to the multitude of use cases this is maintained on a _best effort_ basis.
|
Due to the multitude of use cases this is maintained on a _best effort_ basis.
|
||||||
Pull requests are welcome.
|
Pull requests are welcome.
|
||||||
|
|
||||||
|
@ -114,7 +114,7 @@ my %taboo_tokens = (
|
|||||||
);
|
);
|
||||||
|
|
||||||
# list of function definitions to be ignored, unless they are being defined in
|
# list of function definitions to be ignored, unless they are being defined in
|
||||||
# the given spec. This is an ugly hack arround the fact that people writing
|
# the given spec. This is an ugly hack around the fact that people writing
|
||||||
# spec files seem to shut down all brain activity while they are at this task.
|
# spec files seem to shut down all brain activity while they are at this task.
|
||||||
#
|
#
|
||||||
# This will be moved to its own file eventually.
|
# This will be moved to its own file eventually.
|
||||||
@ -185,7 +185,7 @@ sub normalize_prototype
|
|||||||
return $_;
|
return $_;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Ugly hack to work arround the fact that functions are declared in more
|
# Ugly hack to work around the fact that functions are declared in more
|
||||||
# than one spec file.
|
# than one spec file.
|
||||||
sub ignore_function($$)
|
sub ignore_function($$)
|
||||||
{
|
{
|
||||||
|
@ -88,7 +88,7 @@ terminated with a semicolon.
|
|||||||
<h3>Custom Code Generation</h3>
|
<h3>Custom Code Generation</h3>
|
||||||
<p>
|
<p>
|
||||||
Starting from GLEW 1.3.0, it is possible to control which extensions
|
Starting from GLEW 1.3.0, it is possible to control which extensions
|
||||||
to include in the libarary by specifying a list in
|
to include in the library by specifying a list in
|
||||||
<tt>auto/custom.txt</tt>. This is useful when you do not need all the
|
<tt>auto/custom.txt</tt>. This is useful when you do not need all the
|
||||||
extensions and would like to reduce the size of the source files.
|
extensions and would like to reduce the size of the source files.
|
||||||
Type <tt>make clean; make custom</tt> in the <tt>auto</tt> directory
|
Type <tt>make clean; make custom</tt> in the <tt>auto</tt> directory
|
||||||
|
@ -198,7 +198,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li> Bug fixes:
|
<li> Bug fixes:
|
||||||
<ul>
|
<ul>
|
||||||
<li> Resovled crash when glXGetCurrentDisplay() is NULL
|
<li> Resolved crash when glXGetCurrentDisplay() is NULL
|
||||||
<li> CMake: only install PDB files with MSVC
|
<li> CMake: only install PDB files with MSVC
|
||||||
<li> wglGetProcAddress crash with NOGDI defined
|
<li> wglGetProcAddress crash with NOGDI defined
|
||||||
<li> Mac: using -Os rather than -O2
|
<li> Mac: using -Os rather than -O2
|
||||||
@ -927,7 +927,7 @@
|
|||||||
</ul>
|
</ul>
|
||||||
<li> Bug fixes:
|
<li> Bug fixes:
|
||||||
<ul>
|
<ul>
|
||||||
<li> Incorrent 64-bit type definitions
|
<li> Incorrect 64-bit type definitions
|
||||||
<li> Do not strip static library on install
|
<li> Do not strip static library on install
|
||||||
<li> Missing tokens in GL_ATI_fragment_shader and WGL_{ARB,EXT}_make_current_read
|
<li> Missing tokens in GL_ATI_fragment_shader and WGL_{ARB,EXT}_make_current_read
|
||||||
<li> Missing tokens in GL_VERSION_2_1
|
<li> Missing tokens in GL_VERSION_2_1
|
||||||
@ -975,7 +975,7 @@ corruption of their values
|
|||||||
<li> Missing include guards in glxew.h
|
<li> Missing include guards in glxew.h
|
||||||
<li> Makefile and install problems for Cygwin builds
|
<li> Makefile and install problems for Cygwin builds
|
||||||
<li> Install problem for Linux AMD64 builds
|
<li> Install problem for Linux AMD64 builds
|
||||||
<li> Incorrent token in GL_ATI_texture_compression_3dc
|
<li> Incorrect token in GL_ATI_texture_compression_3dc
|
||||||
<li> Missing tokens from GL_ATIX_point_sprites
|
<li> Missing tokens from GL_ATIX_point_sprites
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -51,7 +51,7 @@ endif()
|
|||||||
|
|
||||||
find_package (OpenGL REQUIRED)
|
find_package (OpenGL REQUIRED)
|
||||||
|
|
||||||
# cmake<3.10 doesnt detect EGL/GLX
|
# cmake<3.10 doesn't detect EGL/GLX
|
||||||
if (CMAKE_VERSION VERSION_LESS 3.10)
|
if (CMAKE_VERSION VERSION_LESS 3.10)
|
||||||
find_library(OPENGL_egl_LIBRARY NAMES EGL)
|
find_library(OPENGL_egl_LIBRARY NAMES EGL)
|
||||||
if (OPENGL_egl_LIBRARY)
|
if (OPENGL_egl_LIBRARY)
|
||||||
|
@ -184,7 +184,7 @@ terminated with a semicolon.
|
|||||||
<h3>Custom Code Generation</h3>
|
<h3>Custom Code Generation</h3>
|
||||||
<p>
|
<p>
|
||||||
Starting from GLEW 1.3.0, it is possible to control which extensions
|
Starting from GLEW 1.3.0, it is possible to control which extensions
|
||||||
to include in the libarary by specifying a list in
|
to include in the library by specifying a list in
|
||||||
<tt>auto/custom.txt</tt>. This is useful when you do not need all the
|
<tt>auto/custom.txt</tt>. This is useful when you do not need all the
|
||||||
extensions and would like to reduce the size of the source files.
|
extensions and would like to reduce the size of the source files.
|
||||||
Type <tt>make clean; make custom</tt> in the <tt>auto</tt> directory
|
Type <tt>make clean; make custom</tt> in the <tt>auto</tt> directory
|
||||||
|
@ -294,7 +294,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
<ul>
|
<ul>
|
||||||
<li> Bug fixes:
|
<li> Bug fixes:
|
||||||
<ul>
|
<ul>
|
||||||
<li> Resovled crash when glXGetCurrentDisplay() is NULL
|
<li> Resolved crash when glXGetCurrentDisplay() is NULL
|
||||||
<li> CMake: only install PDB files with MSVC
|
<li> CMake: only install PDB files with MSVC
|
||||||
<li> wglGetProcAddress crash with NOGDI defined
|
<li> wglGetProcAddress crash with NOGDI defined
|
||||||
<li> Mac: using -Os rather than -O2
|
<li> Mac: using -Os rather than -O2
|
||||||
@ -1023,7 +1023,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
</ul>
|
</ul>
|
||||||
<li> Bug fixes:
|
<li> Bug fixes:
|
||||||
<ul>
|
<ul>
|
||||||
<li> Incorrent 64-bit type definitions
|
<li> Incorrect 64-bit type definitions
|
||||||
<li> Do not strip static library on install
|
<li> Do not strip static library on install
|
||||||
<li> Missing tokens in GL_ATI_fragment_shader and WGL_{ARB,EXT}_make_current_read
|
<li> Missing tokens in GL_ATI_fragment_shader and WGL_{ARB,EXT}_make_current_read
|
||||||
<li> Missing tokens in GL_VERSION_2_1
|
<li> Missing tokens in GL_VERSION_2_1
|
||||||
@ -1071,7 +1071,7 @@ corruption of their values
|
|||||||
<li> Missing include guards in glxew.h
|
<li> Missing include guards in glxew.h
|
||||||
<li> Makefile and install problems for Cygwin builds
|
<li> Makefile and install problems for Cygwin builds
|
||||||
<li> Install problem for Linux AMD64 builds
|
<li> Install problem for Linux AMD64 builds
|
||||||
<li> Incorrent token in GL_ATI_texture_compression_3dc
|
<li> Incorrect token in GL_ATI_texture_compression_3dc
|
||||||
<li> Missing tokens from GL_ATIX_point_sprites
|
<li> Missing tokens from GL_ATIX_point_sprites
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
Loading…
Reference in New Issue
Block a user