diff --git a/doc/README.html b/doc/README.html index 20556cb..6df8f66 100644 --- a/doc/README.html +++ b/doc/README.html @@ -332,12 +332,14 @@ GLEW requires GLX 1.2 to assure compatibility with GLUT. In addition, the SGI GLX video extensions are not supported, because they depend on external libraries.

-Note that according to the WGL and GLX specifications you have to -initialize the entry points for every rendering context you create. -GLEW ignores this requirement, and does not define per context entry -points. This means that you need to call glewInit() only -once in your program. We have not noticed any problems so far from -ignoring this requirement. +Note that according to the WGL documentation you have to initialize the entry points +for every rendering context you create. GLEW ignores this +requirement, and does not define per context entry points. This means +that you need to call glewInit() only once in your program, +or more precisely once per process. We have not noticed any problems +so far from ignoring the specification.