summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorJosé Fonseca <jose.r.fonseca@gmail.com>2011-11-27 12:04:13 +0000
committerJosé Fonseca <jose.r.fonseca@gmail.com>2011-11-27 12:04:13 +0000
commitb2c434bc5b8467cf4d0dfd20961177772bcf3378 (patch)
tree811cd88ee4220c40853c2b0c0f3d0754f91c1615 /gui
parent58fd645f6bf9063a80f6aaeb50d078e1dc68e274 (diff)
Add hyperlinks for non-ARB extensions too.
Diffstat (limited to 'gui')
-rwxr-xr-xgui/resources/glreference-man.sh8
-rwxr-xr-xgui/resources/glreference-registry.sh30
-rw-r--r--gui/resources/glreference.tsv1252
3 files changed, 1290 insertions, 0 deletions
diff --git a/gui/resources/glreference-man.sh b/gui/resources/glreference-man.sh
new file mode 100755
index 00000000..20bdaa6a
--- /dev/null
+++ b/gui/resources/glreference-man.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+# Script to extract reference URLS for functions documented in OpenGL man pages
+
+wget -N -r -np http://www.opengl.org/sdk/docs/{man,man2,man3,man4}/
+
+find www.opengl.org -type f -name '*.xml' \
+| xargs grep -o '<b class="fsfunc">[^<]*</b>' \
+| sed -e 's/<[^>]*>//g' -e 's@^\(.*\):\(.*\)$@\2\thttp://\1@'
diff --git a/gui/resources/glreference-registry.sh b/gui/resources/glreference-registry.sh
new file mode 100755
index 00000000..76b5dbe4
--- /dev/null
+++ b/gui/resources/glreference-registry.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+# Script to extract reference URLs for functions documented in OpenGL ARB specs
+
+extract_urls () {
+ for URL
+ do
+ lynx -dump "$URL" | sed -n -e '/^References$/,$s/^ *[0-9]\+\. \+//p' | sed -e 's/ /%20/g'
+ done
+}
+
+extract_functions () {
+ sed -n -e '/^New Procedures and Functions$/,/^\w/ s/.* \(\w\+\)(.*$/\1/p' "$@" \
+ | sed -e '/^[A-Z]/s/^/gl/'
+}
+
+extract_urls http://www.opengl.org/registry/ \
+| grep '^http://www\.opengl\.org/registry/specs/\w\+/.*\.txt$' \
+| sort -u \
+| while read URL
+do
+ wget --quiet -O - $URL \
+ | extract_functions \
+ | while read FUNCTION
+ do
+ echo "$FUNCTION $URL"
+ done
+done
+
+
+
diff --git a/gui/resources/glreference.tsv b/gui/resources/glreference.tsv
index 47a0072f..76cba730 100644
--- a/gui/resources/glreference.tsv
+++ b/gui/resources/glreference.tsv
@@ -1,12 +1,23 @@
glAccum http://www.opengl.org/sdk/docs/man/xhtml/glAccum.xml
+glAccumxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glActiveProgramEXT http://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glActiveShaderProgram http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glActiveShaderProgram http://www.opengl.org/sdk/docs/man4/xhtml/glActiveShaderProgram.xml
+glActiveStencilFaceEXT http://www.opengl.org/registry/specs/EXT/stencil_two_side.txt
glActiveTexture http://www.opengl.org/sdk/docs/man/xhtml/glActiveTexture.xml
glActiveTexture http://www.opengl.org/sdk/docs/man3/xhtml/glActiveTexture.xml
glActiveTexture http://www.opengl.org/sdk/docs/man4/xhtml/glActiveTexture.xml
+glActiveVaryingNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glAlphaFunc http://www.opengl.org/sdk/docs/man/xhtml/glAlphaFunc.xml
+glAlphaFuncxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glApplyTextureEXT http://www.opengl.org/registry/specs/EXT/light_texture.txt
+glAreProgramsResidentNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glAreTexturesResident http://www.opengl.org/sdk/docs/man/xhtml/glAreTexturesResident.xml
+glAreTexturesResidentEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
glArrayElement http://www.opengl.org/sdk/docs/man/xhtml/glArrayElement.xml
+glArrayElementEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glArrayObjectATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glAsyncMarkerSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
glAttachObjectARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glAttachShader http://www.opengl.org/sdk/docs/man/xhtml/glAttachShader.xml
glAttachShader http://www.opengl.org/sdk/docs/man3/xhtml/glAttachShader.xml
@@ -14,14 +25,23 @@ glAttachShader http://www.opengl.org/sdk/docs/man4/xhtml/glAttachShader.xml
glBegin http://www.opengl.org/sdk/docs/man/xhtml/glBegin.xml
glBeginConditionalRender http://www.opengl.org/sdk/docs/man3/xhtml/glBeginConditionalRender.xml
glBeginConditionalRender http://www.opengl.org/sdk/docs/man4/xhtml/glBeginConditionalRender.xml
+glBeginConditionalRenderNV http://www.opengl.org/registry/specs/NV/conditional_render.txt
+glBeginOcclusionQueryNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glBeginPerfMonitorAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glBeginQuery http://www.opengl.org/sdk/docs/man/xhtml/glBeginQuery.xml
glBeginQuery http://www.opengl.org/sdk/docs/man3/xhtml/glBeginQuery.xml
glBeginQuery http://www.opengl.org/sdk/docs/man4/xhtml/glBeginQuery.xml
glBeginQueryARB http://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glBeginQueryIndexed http://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glBeginQueryIndexed http://www.opengl.org/sdk/docs/man4/xhtml/glBeginQueryIndexed.xml
+glBeginSceneEXT http://www.opengl.org/registry/specs/EXT/scene_marker.txt
glBeginTransformFeedback http://www.opengl.org/sdk/docs/man3/xhtml/glBeginTransformFeedback.xml
glBeginTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glBeginTransformFeedback.xml
+glBeginTransformFeedbackEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glBeginTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glBeginVideoCaptureNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glBindArraySetEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.alt.txt
+glBindArraySetEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
glBindAttribLocation http://www.opengl.org/sdk/docs/man/xhtml/glBindAttribLocation.xml
glBindAttribLocation http://www.opengl.org/sdk/docs/man3/xhtml/glBindAttribLocation.xml
glBindAttribLocation http://www.opengl.org/sdk/docs/man4/xhtml/glBindAttribLocation.xml
@@ -33,11 +53,21 @@ glBindBufferARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.tx
glBindBufferBase http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glBindBufferBase http://www.opengl.org/sdk/docs/man3/xhtml/glBindBufferBase.xml
glBindBufferBase http://www.opengl.org/sdk/docs/man4/xhtml/glBindBufferBase.xml
+glBindBufferBaseEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glBindBufferBaseNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glBindBufferBaseNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glBindBufferOffsetEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glBindBufferOffsetNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glBindBufferOffsetNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBindBufferRange http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glBindBufferRange http://www.opengl.org/sdk/docs/man3/xhtml/glBindBufferRange.xml
glBindBufferRange http://www.opengl.org/sdk/docs/man4/xhtml/glBindBufferRange.xml
+glBindBufferRangeEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glBindBufferRangeNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glBindBufferRangeNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glBindFragDataLocation http://www.opengl.org/sdk/docs/man3/xhtml/glBindFragDataLocation.xml
glBindFragDataLocation http://www.opengl.org/sdk/docs/man4/xhtml/glBindFragDataLocation.xml
+glBindFragDataLocationEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glBindFragDataLocationIndexed http://www.opengl.org/registry/specs/ARB/blend_func_extended.txt
glBindFragDataLocationIndexed http://www.opengl.org/sdk/docs/man3/xhtml/glBindFragDataLocationIndexed.xml
glBindFragDataLocationIndexed http://www.opengl.org/sdk/docs/man4/xhtml/glBindFragDataLocationIndexed.xml
@@ -45,8 +75,12 @@ glBindFramebuffer http://www.opengl.org/registry/specs/ARB/framebuffer_object.tx
glBindFramebuffer http://www.opengl.org/sdk/docs/man3/xhtml/glBindFramebuffer.xml
glBindFramebuffer http://www.opengl.org/sdk/docs/man4/xhtml/glBindFramebuffer.xml
glBindFramebufferEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
+glBindImageTexture http://www.opengl.org/registry/specs/ARB/shader_image_load_store.txt
+glBindImageTextureEXT http://www.opengl.org/registry/specs/EXT/shader_image_load_store.txt
+glBindMultiTextureEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glBindProgramARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glBindProgramARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glBindProgramNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glBindProgramPipeline http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glBindProgramPipeline http://www.opengl.org/sdk/docs/man4/xhtml/glBindProgramPipeline.xml
glBindRenderbuffer http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
@@ -56,24 +90,38 @@ glBindRenderbufferEXT http://www.opengl.org/registry/specs/EXT/framebuffer_objec
glBindSampler http://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glBindSampler http://www.opengl.org/sdk/docs/man3/xhtml/glBindSampler.xml
glBindSampler http://www.opengl.org/sdk/docs/man4/xhtml/glBindSampler.xml
+glBindSwapBarrierSGIX http://www.opengl.org/registry/specs/SGIX/swap_barrier.txt
glBindTexture http://www.opengl.org/sdk/docs/man/xhtml/glBindTexture.xml
glBindTexture http://www.opengl.org/sdk/docs/man3/xhtml/glBindTexture.xml
glBindTexture http://www.opengl.org/sdk/docs/man4/xhtml/glBindTexture.xml
+glBindTextureEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
glBindTransformFeedback http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glBindTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glBindTransformFeedback.xml
+glBindTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glBindVertexArray http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glBindVertexArray http://www.opengl.org/sdk/docs/man3/xhtml/glBindVertexArray.xml
glBindVertexArray http://www.opengl.org/sdk/docs/man4/xhtml/glBindVertexArray.xml
+glBindVertexArrayAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
+glBindVideoCaptureStreamBufferNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glBindVideoCaptureStreamTextureNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glBinormalPointerEXT http://www.opengl.org/registry/specs/EXT/coordinate_frame.txt
glBitmap http://www.opengl.org/sdk/docs/man/xhtml/glBitmap.xml
+glBitmapxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glBlendColor http://www.opengl.org/sdk/docs/man/xhtml/glBlendColor.xml
glBlendColor http://www.opengl.org/sdk/docs/man3/xhtml/glBlendColor.xml
glBlendColor http://www.opengl.org/sdk/docs/man4/xhtml/glBlendColor.xml
+glBlendColorEXT http://www.opengl.org/registry/specs/EXT/blend_color.txt
+glBlendColorxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glBlendEquation http://www.opengl.org/sdk/docs/man/xhtml/glBlendEquation.xml
glBlendEquation http://www.opengl.org/sdk/docs/man3/xhtml/glBlendEquation.xml
glBlendEquation http://www.opengl.org/sdk/docs/man4/xhtml/glBlendEquation.xml
+glBlendEquationEXT http://www.opengl.org/registry/specs/EXT/blend_minmax.txt
+glBlendEquationIndexedAMD http://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendEquationSeparate http://www.opengl.org/sdk/docs/man/xhtml/glBlendEquationSeparate.xml
glBlendEquationSeparate http://www.opengl.org/sdk/docs/man3/xhtml/glBlendEquationSeparate.xml
glBlendEquationSeparate http://www.opengl.org/sdk/docs/man4/xhtml/glBlendEquationSeparate.xml
+glBlendEquationSeparateEXT http://www.opengl.org/registry/specs/EXT/blend_equation_separate.txt
+glBlendEquationSeparateIndexedAMD http://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendEquationSeparatei http://www.opengl.org/sdk/docs/man4/xhtml/glBlendEquationSeparate.xml
glBlendEquationSeparateiARB http://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlendEquationi http://www.opengl.org/sdk/docs/man4/xhtml/glBlendEquation.xml
@@ -81,9 +129,12 @@ glBlendEquationiARB http://www.opengl.org/registry/specs/ARB/draw_buffers_blend.
glBlendFunc http://www.opengl.org/sdk/docs/man/xhtml/glBlendFunc.xml
glBlendFunc http://www.opengl.org/sdk/docs/man3/xhtml/glBlendFunc.xml
glBlendFunc http://www.opengl.org/sdk/docs/man4/xhtml/glBlendFunc.xml
+glBlendFuncIndexedAMD http://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendFuncSeparate http://www.opengl.org/sdk/docs/man/xhtml/glBlendFuncSeparate.xml
glBlendFuncSeparate http://www.opengl.org/sdk/docs/man3/xhtml/glBlendFuncSeparate.xml
glBlendFuncSeparate http://www.opengl.org/sdk/docs/man4/xhtml/glBlendFuncSeparate.xml
+glBlendFuncSeparateEXT http://www.opengl.org/registry/specs/EXT/blend_func_separate.txt
+glBlendFuncSeparateIndexedAMD http://www.opengl.org/registry/specs/AMD/draw_buffers_blend.txt
glBlendFuncSeparatei http://www.opengl.org/sdk/docs/man4/xhtml/glBlendFuncSeparate.xml
glBlendFuncSeparateiARB http://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlendFunci http://www.opengl.org/sdk/docs/man4/xhtml/glBlendFunc.xml
@@ -91,10 +142,13 @@ glBlendFunciARB http://www.opengl.org/registry/specs/ARB/draw_buffers_blend.txt
glBlitFramebuffer http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glBlitFramebuffer http://www.opengl.org/sdk/docs/man3/xhtml/glBlitFramebuffer.xml
glBlitFramebuffer http://www.opengl.org/sdk/docs/man4/xhtml/glBlitFramebuffer.xml
+glBlitFramebufferEXT http://www.opengl.org/registry/specs/EXT/framebuffer_blit.txt
+glBufferAddressRangeNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glBufferData http://www.opengl.org/sdk/docs/man/xhtml/glBufferData.xml
glBufferData http://www.opengl.org/sdk/docs/man3/xhtml/glBufferData.xml
glBufferData http://www.opengl.org/sdk/docs/man4/xhtml/glBufferData.xml
glBufferDataARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glBufferParameteriAPPLE http://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt
glBufferSubData http://www.opengl.org/sdk/docs/man/xhtml/glBufferSubData.xml
glBufferSubData http://www.opengl.org/sdk/docs/man3/xhtml/glBufferSubData.xml
glBufferSubData http://www.opengl.org/sdk/docs/man4/xhtml/glBufferSubData.xml
@@ -105,6 +159,7 @@ glCheckFramebufferStatus http://www.opengl.org/registry/specs/ARB/framebuffer_ob
glCheckFramebufferStatus http://www.opengl.org/sdk/docs/man3/xhtml/glCheckFramebufferStatus.xml
glCheckFramebufferStatus http://www.opengl.org/sdk/docs/man4/xhtml/glCheckFramebufferStatus.xml
glCheckFramebufferStatusEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
+glCheckNamedFramebufferStatusEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glClampColor http://www.opengl.org/sdk/docs/man3/xhtml/glClampColor.xml
glClampColor http://www.opengl.org/sdk/docs/man4/xhtml/glClampColor.xml
glClampColorARB http://www.opengl.org/registry/specs/ARB/color_buffer_float.txt
@@ -112,6 +167,7 @@ glClear http://www.opengl.org/sdk/docs/man/xhtml/glClear.xml
glClear http://www.opengl.org/sdk/docs/man3/xhtml/glClear.xml
glClear http://www.opengl.org/sdk/docs/man4/xhtml/glClear.xml
glClearAccum http://www.opengl.org/sdk/docs/man/xhtml/glClearAccum.xml
+glClearAccumxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearBufferfi http://www.opengl.org/sdk/docs/man3/xhtml/glClearBuffer.xml
glClearBufferfi http://www.opengl.org/sdk/docs/man4/xhtml/glClearBuffer.xml
glClearBufferfv http://www.opengl.org/sdk/docs/man3/xhtml/glClearBuffer.xml
@@ -123,26 +179,38 @@ glClearBufferuiv http://www.opengl.org/sdk/docs/man4/xhtml/glClearBuffer.xml
glClearColor http://www.opengl.org/sdk/docs/man/xhtml/glClearColor.xml
glClearColor http://www.opengl.org/sdk/docs/man3/xhtml/glClearColor.xml
glClearColor http://www.opengl.org/sdk/docs/man4/xhtml/glClearColor.xml
+glClearColorxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearDepth http://www.opengl.org/sdk/docs/man/xhtml/glClearDepth.xml
glClearDepth http://www.opengl.org/sdk/docs/man3/xhtml/glClearDepth.xml
glClearDepth http://www.opengl.org/sdk/docs/man4/xhtml/glClearDepth.xml
+glClearDepthdNV http://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glClearDepthf http://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glClearDepthf http://www.opengl.org/sdk/docs/man4/xhtml/glClearDepth.xml
+glClearDepthfOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glClearDepthxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glClearIndex http://www.opengl.org/sdk/docs/man/xhtml/glClearIndex.xml
glClearStencil http://www.opengl.org/sdk/docs/man/xhtml/glClearStencil.xml
glClearStencil http://www.opengl.org/sdk/docs/man3/xhtml/glClearStencil.xml
glClearStencil http://www.opengl.org/sdk/docs/man4/xhtml/glClearStencil.xml
glClientActiveTexture http://www.opengl.org/sdk/docs/man/xhtml/glClientActiveTexture.xml
+glClientActiveVertexStream http://www.opengl.org/registry/specs/ATI/vertex_streams.txt
+glClientAttribDefaultEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glClientWaitSync http://www.opengl.org/registry/specs/ARB/sync.txt
glClientWaitSync http://www.opengl.org/sdk/docs/man3/xhtml/glClientWaitSync.xml
glClientWaitSync http://www.opengl.org/sdk/docs/man4/xhtml/glClientWaitSync.xml
glClipPlane http://www.opengl.org/sdk/docs/man/xhtml/glClipPlane.xml
+glClipPlanefOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glClipPlanexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glColor3b http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3bv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3d http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3dv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3f http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColor3fVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glColor3fVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glColor3fv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColor3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glColor3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glColor3i http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3iv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor3s http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
@@ -158,20 +226,30 @@ glColor4bv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4d http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4dv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4f http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColor4fNormal3fVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glColor4fNormal3fVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4fv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColor4hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glColor4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glColor4i http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4iv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4s http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4sv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4ub http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColor4ubVertex2fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glColor4ubVertex2fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glColor4ubVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glColor4ubVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glColor4ubv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4ui http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4uiv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4us http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
glColor4usv http://www.opengl.org/sdk/docs/man/xhtml/glColor.xml
+glColorFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glColorMask http://www.opengl.org/sdk/docs/man/xhtml/glColorMask.xml
glColorMask http://www.opengl.org/sdk/docs/man3/xhtml/glColorMask.xml
glColorMask http://www.opengl.org/sdk/docs/man4/xhtml/glColorMask.xml
+glColorMaskIndexedEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
glColorMaski http://www.opengl.org/sdk/docs/man4/xhtml/glColorMask.xml
glColorMaterial http://www.opengl.org/sdk/docs/man/xhtml/glColorMaterial.xml
glColorP3ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
@@ -179,15 +257,36 @@ glColorP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev
glColorP4ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorP4uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glColorPointer http://www.opengl.org/sdk/docs/man/xhtml/glColorPointer.xml
+glColorPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glColorPointervINTEL http://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glColorSubTable http://www.opengl.org/sdk/docs/man/xhtml/glColorSubTable.xml
+glColorSubTableEXT http://www.opengl.org/registry/specs/EXT/color_subtable.txt
+glColorSubTableEXT http://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glColorTable http://www.opengl.org/sdk/docs/man/xhtml/glColorTable.xml
+glColorTableEXT http://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glColorTableParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glColorTableParameter.xml
+glColorTableParameterfvSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
glColorTableParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glColorTableParameter.xml
+glColorTableParameterivSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
+glColorTableSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
+glCombinerInputNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerOutputNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerParameterfNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerParameteriNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerParameterivNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glCombinerStageParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners2.txt
glCompileShader http://www.opengl.org/sdk/docs/man/xhtml/glCompileShader.xml
glCompileShader http://www.opengl.org/sdk/docs/man3/xhtml/glCompileShader.xml
glCompileShader http://www.opengl.org/sdk/docs/man4/xhtml/glCompileShader.xml
glCompileShaderARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glCompileShaderIncludeARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
+glCompressedMultiTexImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedMultiTexImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedMultiTexImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedMultiTexSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedMultiTexSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedMultiTexSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glCompressedTexImage1D http://www.opengl.org/sdk/docs/man/xhtml/glCompressedTexImage1D.xml
glCompressedTexImage1D http://www.opengl.org/sdk/docs/man3/xhtml/glCompressedTexImage1D.xml
glCompressedTexImage1D http://www.opengl.org/sdk/docs/man4/xhtml/glCompressedTexImage1D.xml
@@ -212,35 +311,72 @@ glCompressedTexSubImage3D http://www.opengl.org/sdk/docs/man/xhtml/glCompressedT
glCompressedTexSubImage3D http://www.opengl.org/sdk/docs/man3/xhtml/glCompressedTexSubImage3D.xml
glCompressedTexSubImage3D http://www.opengl.org/sdk/docs/man4/xhtml/glCompressedTexSubImage3D.xml
glCompressedTexSubImage3DARB http://www.opengl.org/registry/specs/ARB/texture_compression.txt
+glCompressedTextureImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedTextureImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedTextureImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedTextureSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedTextureSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCompressedTextureSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glConvolutionFilter1D http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionFilter1D.xml
+glConvolutionFilter1DEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionFilter2D http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionFilter2D.xml
+glConvolutionFilter2DEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameterf http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionParameter.xml
+glConvolutionParameterfEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionParameter.xml
+glConvolutionParameterfvEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameteri http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionParameter.xml
+glConvolutionParameteriEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glConvolutionParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glConvolutionParameter.xml
+glConvolutionParameterivEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glCopyBufferSubData http://www.opengl.org/registry/specs/ARB/copy_buffer.txt
glCopyBufferSubData http://www.opengl.org/sdk/docs/man3/xhtml/glCopyBufferSubData.xml
glCopyBufferSubData http://www.opengl.org/sdk/docs/man4/xhtml/glCopyBufferSubData.xml
glCopyColorSubTable http://www.opengl.org/sdk/docs/man/xhtml/glCopyColorSubTable.xml
+glCopyColorSubTableEXT http://www.opengl.org/registry/specs/EXT/color_subtable.txt
glCopyColorTable http://www.opengl.org/sdk/docs/man/xhtml/glCopyColorTable.xml
+glCopyColorTableSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
glCopyConvolutionFilter1D http://www.opengl.org/sdk/docs/man/xhtml/glCopyConvolutionFilter1D.xml
+glCopyConvolutionFilter1DEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glCopyConvolutionFilter2D http://www.opengl.org/sdk/docs/man/xhtml/glCopyConvolutionFilter2D.xml
+glCopyConvolutionFilter2DEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
+glCopyImageSubDataNV http://www.opengl.org/registry/specs/NV/copy_image.txt
+glCopyMultiTexImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyMultiTexImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyMultiTexSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyMultiTexSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyMultiTexSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glCopyPixels http://www.opengl.org/sdk/docs/man/xhtml/glCopyPixels.xml
glCopyTexImage1D http://www.opengl.org/sdk/docs/man/xhtml/glCopyTexImage1D.xml
glCopyTexImage1D http://www.opengl.org/sdk/docs/man3/xhtml/glCopyTexImage1D.xml
glCopyTexImage1D http://www.opengl.org/sdk/docs/man4/xhtml/glCopyTexImage1D.xml
+glCopyTexImage1DEXT http://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexImage2D http://www.opengl.org/sdk/docs/man/xhtml/glCopyTexImage2D.xml
glCopyTexImage2D http://www.opengl.org/sdk/docs/man3/xhtml/glCopyTexImage2D.xml
glCopyTexImage2D http://www.opengl.org/sdk/docs/man4/xhtml/glCopyTexImage2D.xml
+glCopyTexImage2DEXT http://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage1D http://www.opengl.org/sdk/docs/man/xhtml/glCopyTexSubImage1D.xml
glCopyTexSubImage1D http://www.opengl.org/sdk/docs/man3/xhtml/glCopyTexSubImage1D.xml
glCopyTexSubImage1D http://www.opengl.org/sdk/docs/man4/xhtml/glCopyTexSubImage1D.xml
+glCopyTexSubImage1DEXT http://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage2D http://www.opengl.org/sdk/docs/man/xhtml/glCopyTexSubImage2D.xml
glCopyTexSubImage2D http://www.opengl.org/sdk/docs/man3/xhtml/glCopyTexSubImage2D.xml
glCopyTexSubImage2D http://www.opengl.org/sdk/docs/man4/xhtml/glCopyTexSubImage2D.xml
+glCopyTexSubImage2DEXT http://www.opengl.org/registry/specs/EXT/copy_texture.txt
glCopyTexSubImage3D http://www.opengl.org/sdk/docs/man/xhtml/glCopyTexSubImage3D.xml
glCopyTexSubImage3D http://www.opengl.org/sdk/docs/man3/xhtml/glCopyTexSubImage3D.xml
glCopyTexSubImage3D http://www.opengl.org/sdk/docs/man4/xhtml/glCopyTexSubImage3D.xml
+glCopyTexSubImage3DEXT http://www.opengl.org/registry/specs/EXT/copy_texture.txt
+glCopyTextureImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyTextureImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyTextureSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyTextureSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCopyTextureSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glCoverFillPathInstancedNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glCoverFillPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glCoverStrokePathInstancedNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glCoverStrokePathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glCreateProgram http://www.opengl.org/sdk/docs/man/xhtml/glCreateProgram.xml
glCreateProgram http://www.opengl.org/sdk/docs/man3/xhtml/glCreateProgram.xml
glCreateProgram http://www.opengl.org/sdk/docs/man4/xhtml/glCreateProgram.xml
@@ -249,6 +385,7 @@ glCreateShader http://www.opengl.org/sdk/docs/man/xhtml/glCreateShader.xml
glCreateShader http://www.opengl.org/sdk/docs/man3/xhtml/glCreateShader.xml
glCreateShader http://www.opengl.org/sdk/docs/man4/xhtml/glCreateShader.xml
glCreateShaderObjectARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glCreateShaderProgramEXT http://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glCreateShaderProgramv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glCreateShaderProgramv http://www.opengl.org/sdk/docs/man4/xhtml/glCreateShaderProgram.xml
glCreateSyncFromCLeventARB http://www.opengl.org/registry/specs/ARB/cl_event.txt
@@ -256,20 +393,34 @@ glCullFace http://www.opengl.org/sdk/docs/man/xhtml/glCullFace.xml
glCullFace http://www.opengl.org/sdk/docs/man3/xhtml/glCullFace.xml
glCullFace http://www.opengl.org/sdk/docs/man4/xhtml/glCullFace.xml
glCurrentPaletteMatrixARB http://www.opengl.org/registry/specs/ARB/matrix_palette.txt
+glDECLARE_HANDLE http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+glDECLARE_HANDLE http://www.opengl.org/registry/specs/NV/present_video.txt
+glDebugMessageCallbackAMD http://www.opengl.org/registry/specs/AMD/debug_output.txt
glDebugMessageCallbackARB http://www.opengl.org/registry/specs/ARB/debug_output.txt
glDebugMessageControlARB http://www.opengl.org/registry/specs/ARB/debug_output.txt
+glDebugMessageEnableAMD http://www.opengl.org/registry/specs/AMD/debug_output.txt
+glDebugMessageInsertAMD http://www.opengl.org/registry/specs/AMD/debug_output.txt
glDebugMessageInsertARB http://www.opengl.org/registry/specs/ARB/debug_output.txt
+glDeleteArraySetsEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.alt.txt
+glDeleteArraySetsEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
+glDeleteAsyncMarkersSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
glDeleteBuffers http://www.opengl.org/sdk/docs/man/xhtml/glDeleteBuffers.xml
glDeleteBuffers http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteBuffers.xml
glDeleteBuffers http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteBuffers.xml
glDeleteBuffersARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glDeleteFencesAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glDeleteFencesNV http://www.opengl.org/registry/specs/NV/fence.txt
glDeleteFramebuffers http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glDeleteFramebuffers http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteFramebuffers.xml
glDeleteFramebuffers http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteFramebuffers.xml
glDeleteFramebuffersEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glDeleteLists http://www.opengl.org/sdk/docs/man/xhtml/glDeleteLists.xml
glDeleteNamedStringARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
+glDeleteNamesAMD http://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
glDeleteObjectARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glDeleteOcclusionQueriesNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glDeletePathsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glDeletePerfMonitorsAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glDeleteProgram http://www.opengl.org/sdk/docs/man/xhtml/glDeleteProgram.xml
glDeleteProgram http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteProgram.xml
glDeleteProgram http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteProgram.xml
@@ -277,6 +428,7 @@ glDeleteProgramPipelines http://www.opengl.org/registry/specs/ARB/separate_shade
glDeleteProgramPipelines http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteProgramPipelines.xml
glDeleteProgramsARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glDeleteProgramsARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glDeleteProgramsNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glDeleteQueries http://www.opengl.org/sdk/docs/man/xhtml/glDeleteQueries.xml
glDeleteQueries http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteQueries.xml
glDeleteQueries http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteQueries.xml
@@ -297,11 +449,16 @@ glDeleteSync http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteSync.xml
glDeleteTextures http://www.opengl.org/sdk/docs/man/xhtml/glDeleteTextures.xml
glDeleteTextures http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteTextures.xml
glDeleteTextures http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteTextures.xml
+glDeleteTexturesEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
glDeleteTransformFeedbacks http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glDeleteTransformFeedbacks http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteTransformFeedbacks.xml
+glDeleteTransformFeedbacksNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glDeleteVertexArrays http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glDeleteVertexArrays http://www.opengl.org/sdk/docs/man3/xhtml/glDeleteVertexArrays.xml
glDeleteVertexArrays http://www.opengl.org/sdk/docs/man4/xhtml/glDeleteVertexArrays.xml
+glDeleteVertexArraysAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
+glDepthBoundsEXT http://www.opengl.org/registry/specs/EXT/depth_bounds_test.txt
+glDepthBoundsdNV http://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glDepthFunc http://www.opengl.org/sdk/docs/man/xhtml/glDepthFunc.xml
glDepthFunc http://www.opengl.org/sdk/docs/man3/xhtml/glDepthFunc.xml
glDepthFunc http://www.opengl.org/sdk/docs/man4/xhtml/glDepthFunc.xml
@@ -315,17 +472,28 @@ glDepthRangeArrayv http://www.opengl.org/registry/specs/ARB/viewport_array.txt
glDepthRangeArrayv http://www.opengl.org/sdk/docs/man4/xhtml/glDepthRangeArray.xml
glDepthRangeIndexed http://www.opengl.org/registry/specs/ARB/viewport_array.txt
glDepthRangeIndexed http://www.opengl.org/sdk/docs/man4/xhtml/glDepthRangeIndexed.xml
+glDepthRangedNV http://www.opengl.org/registry/specs/NV/depth_buffer_float.txt
glDepthRangef http://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glDepthRangef http://www.opengl.org/sdk/docs/man4/xhtml/glDepthRange.xml
+glDepthRangefOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glDepthRangexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glDetachObjectARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glDetachShader http://www.opengl.org/sdk/docs/man/xhtml/glDetachShader.xml
glDetachShader http://www.opengl.org/sdk/docs/man3/xhtml/glDetachShader.xml
glDetachShader http://www.opengl.org/sdk/docs/man4/xhtml/glDetachShader.xml
+glDetailTexFuncSGIS http://www.opengl.org/registry/specs/SGIS/detail_texture.txt
glDisable http://www.opengl.org/sdk/docs/man/xhtml/glEnable.xml
glDisable http://www.opengl.org/sdk/docs/man3/xhtml/glEnable.xml
glDisable http://www.opengl.org/sdk/docs/man4/xhtml/glEnable.xml
glDisableClientState http://www.opengl.org/sdk/docs/man/xhtml/glEnableClientState.xml
+glDisableClientStateIndexedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glDisableClientStateiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glDisableIndexedEXT http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glDisableIndexedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glDisableIndexedEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
+glDisableVertexArrayAttribEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glDisableVertexArrayEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glDisableVertexAttribAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glDisableVertexAttribArray http://www.opengl.org/sdk/docs/man/xhtml/glEnableVertexAttribArray.xml
glDisableVertexAttribArray http://www.opengl.org/sdk/docs/man3/xhtml/glEnableVertexAttribArray.xml
glDisableVertexAttribArray http://www.opengl.org/sdk/docs/man4/xhtml/glEnableVertexAttribArray.xml
@@ -336,11 +504,14 @@ glDisablei http://www.opengl.org/sdk/docs/man4/xhtml/glEnable.xml
glDrawArrays http://www.opengl.org/sdk/docs/man/xhtml/glDrawArrays.xml
glDrawArrays http://www.opengl.org/sdk/docs/man3/xhtml/glDrawArrays.xml
glDrawArrays http://www.opengl.org/sdk/docs/man4/xhtml/glDrawArrays.xml
+glDrawArraysEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
glDrawArraysIndirect http://www.opengl.org/registry/specs/ARB/draw_indirect.txt
glDrawArraysIndirect http://www.opengl.org/sdk/docs/man4/xhtml/glDrawArraysIndirect.xml
glDrawArraysInstanced http://www.opengl.org/sdk/docs/man3/xhtml/glDrawArraysInstanced.xml
glDrawArraysInstanced http://www.opengl.org/sdk/docs/man4/xhtml/glDrawArraysInstanced.xml
glDrawArraysInstancedARB http://www.opengl.org/registry/specs/ARB/draw_instanced.txt
+glDrawArraysInstancedBaseInstance http://www.opengl.org/registry/specs/ARB/base_instance.txt
+glDrawArraysInstancedEXT http://www.opengl.org/registry/specs/EXT/draw_instanced.txt
glDrawBuffer http://www.opengl.org/sdk/docs/man/xhtml/glDrawBuffer.xml
glDrawBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glDrawBuffer.xml
glDrawBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glDrawBuffer.xml
@@ -348,6 +519,9 @@ glDrawBuffers http://www.opengl.org/sdk/docs/man/xhtml/glDrawBuffers.xml
glDrawBuffers http://www.opengl.org/sdk/docs/man3/xhtml/glDrawBuffers.xml
glDrawBuffers http://www.opengl.org/sdk/docs/man4/xhtml/glDrawBuffers.xml
glDrawBuffersARB http://www.opengl.org/registry/specs/ARB/draw_buffers.txt
+glDrawBuffersATI http://www.opengl.org/registry/specs/ATI/draw_buffers.txt
+glDrawElementArrayAPPLE http://www.opengl.org/registry/specs/APPLE/element_array.txt
+glDrawElementArrayATI http://www.opengl.org/registry/specs/ATI/element_array.txt
glDrawElements http://www.opengl.org/sdk/docs/man/xhtml/glDrawElements.xml
glDrawElements http://www.opengl.org/sdk/docs/man3/xhtml/glDrawElements.xml
glDrawElements http://www.opengl.org/sdk/docs/man4/xhtml/glDrawElements.xml
@@ -359,10 +533,16 @@ glDrawElementsIndirect http://www.opengl.org/sdk/docs/man4/xhtml/glDrawElementsI
glDrawElementsInstanced http://www.opengl.org/sdk/docs/man3/xhtml/glDrawElementsInstanced.xml
glDrawElementsInstanced http://www.opengl.org/sdk/docs/man4/xhtml/glDrawElementsInstanced.xml
glDrawElementsInstancedARB http://www.opengl.org/registry/specs/ARB/draw_instanced.txt
+glDrawElementsInstancedBaseInstance http://www.opengl.org/registry/specs/ARB/base_instance.txt
glDrawElementsInstancedBaseVertex http://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glDrawElementsInstancedBaseVertex http://www.opengl.org/sdk/docs/man3/xhtml/glDrawElementsInstancedBaseVertex.xml
glDrawElementsInstancedBaseVertex http://www.opengl.org/sdk/docs/man4/xhtml/glDrawElementsInstancedBaseVertex.xml
+glDrawElementsInstancedBaseVertexBaseInstance http://www.opengl.org/registry/specs/ARB/base_instance.txt
+glDrawElementsInstancedEXT http://www.opengl.org/registry/specs/EXT/draw_instanced.txt
+glDrawMeshArraysSUN http://www.opengl.org/registry/specs/SUN/mesh_array.txt
glDrawPixels http://www.opengl.org/sdk/docs/man/xhtml/glDrawPixels.xml
+glDrawRangeElementArrayAPPLE http://www.opengl.org/registry/specs/APPLE/element_array.txt
+glDrawRangeElementArrayATI http://www.opengl.org/registry/specs/ATI/element_array.txt
glDrawRangeElements http://www.opengl.org/sdk/docs/man/xhtml/glDrawRangeElements.xml
glDrawRangeElements http://www.opengl.org/sdk/docs/man3/xhtml/glDrawRangeElements.xml
glDrawRangeElements http://www.opengl.org/sdk/docs/man4/xhtml/glDrawRangeElements.xml
@@ -371,16 +551,31 @@ glDrawRangeElementsBaseVertex http://www.opengl.org/sdk/docs/man3/xhtml/glDrawRa
glDrawRangeElementsBaseVertex http://www.opengl.org/sdk/docs/man4/xhtml/glDrawRangeElementsBaseVertex.xml
glDrawTransformFeedback http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glDrawTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glDrawTransformFeedback.xml
+glDrawTransformFeedbackInstanced http://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt
+glDrawTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glDrawTransformFeedbackStream http://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glDrawTransformFeedbackStream http://www.opengl.org/sdk/docs/man4/xhtml/glDrawTransformFeedbackStream.xml
+glDrawTransformFeedbackStreamInstanced http://www.opengl.org/registry/specs/ARB/transform_feedback_instanced.txt
glEdgeFlag http://www.opengl.org/sdk/docs/man/xhtml/glEdgeFlag.xml
+glEdgeFlagFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glEdgeFlagPointer http://www.opengl.org/sdk/docs/man/xhtml/glEdgeFlagPointer.xml
+glEdgeFlagPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
glEdgeFlagv http://www.opengl.org/sdk/docs/man/xhtml/glEdgeFlag.xml
+glElementPointerAPPLE http://www.opengl.org/registry/specs/APPLE/element_array.txt
+glElementPointerATI http://www.opengl.org/registry/specs/ATI/element_array.txt
+glEnable http://www.opengl.org/registry/specs/SGIX/instruments.txt
glEnable http://www.opengl.org/sdk/docs/man/xhtml/glEnable.xml
glEnable http://www.opengl.org/sdk/docs/man3/xhtml/glEnable.xml
glEnable http://www.opengl.org/sdk/docs/man4/xhtml/glEnable.xml
glEnableClientState http://www.opengl.org/sdk/docs/man/xhtml/glEnableClientState.xml
+glEnableClientStateIndexedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glEnableClientStateiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glEnableIndexedEXT http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glEnableIndexedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glEnableIndexedEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
+glEnableVertexArrayAttribEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glEnableVertexArrayEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glEnableVertexAttribAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glEnableVertexAttribArray http://www.opengl.org/sdk/docs/man/xhtml/glEnableVertexAttribArray.xml
glEnableVertexAttribArray http://www.opengl.org/sdk/docs/man3/xhtml/glEnableVertexAttribArray.xml
glEnableVertexAttribArray http://www.opengl.org/sdk/docs/man4/xhtml/glEnableVertexAttribArray.xml
@@ -391,15 +586,22 @@ glEnablei http://www.opengl.org/sdk/docs/man4/xhtml/glEnable.xml
glEnd http://www.opengl.org/sdk/docs/man/xhtml/glBegin.xml
glEndConditionalRender http://www.opengl.org/sdk/docs/man3/xhtml/glBeginConditionalRender.xml
glEndConditionalRender http://www.opengl.org/sdk/docs/man4/xhtml/glBeginConditionalRender.xml
+glEndConditionalRenderNV http://www.opengl.org/registry/specs/NV/conditional_render.txt
glEndList http://www.opengl.org/sdk/docs/man/xhtml/glNewList.xml
+glEndOcclusionQueryNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glEndPerfMonitorAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glEndQuery http://www.opengl.org/sdk/docs/man/xhtml/glBeginQuery.xml
glEndQuery http://www.opengl.org/sdk/docs/man3/xhtml/glBeginQuery.xml
glEndQuery http://www.opengl.org/sdk/docs/man4/xhtml/glBeginQuery.xml
glEndQueryARB http://www.opengl.org/registry/specs/ARB/occlusion_query.txt
glEndQueryIndexed http://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glEndQueryIndexed http://www.opengl.org/sdk/docs/man4/xhtml/glBeginQueryIndexed.xml
+glEndSceneEXT http://www.opengl.org/registry/specs/EXT/scene_marker.txt
glEndTransformFeedback http://www.opengl.org/sdk/docs/man3/xhtml/glBeginTransformFeedback.xml
glEndTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glBeginTransformFeedback.xml
+glEndTransformFeedbackEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glEndTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glEndVideoCaptureNV http://www.opengl.org/registry/specs/NV/video_capture.txt
glEvalCoord1d http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
glEvalCoord1dv http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
glEvalCoord1f http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
@@ -408,32 +610,84 @@ glEvalCoord2d http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
glEvalCoord2dv http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
glEvalCoord2f http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
glEvalCoord2fv http://www.opengl.org/sdk/docs/man/xhtml/glEvalCoord.xml
+glEvalMapsNV http://www.opengl.org/registry/specs/NV/evaluators.txt
glEvalMesh1 http://www.opengl.org/sdk/docs/man/xhtml/glEvalMesh.xml
glEvalMesh2 http://www.opengl.org/sdk/docs/man/xhtml/glEvalMesh.xml
glEvalPoint1 http://www.opengl.org/sdk/docs/man/xhtml/glEvalPoint.xml
glEvalPoint2 http://www.opengl.org/sdk/docs/man/xhtml/glEvalPoint.xml
+glExecuteProgramNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glFeedbackBuffer http://www.opengl.org/sdk/docs/man/xhtml/glFeedbackBuffer.xml
+glFeedbackBufferxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glFenceSync http://www.opengl.org/registry/specs/ARB/sync.txt
glFenceSync http://www.opengl.org/sdk/docs/man3/xhtml/glFenceSync.xml
glFenceSync http://www.opengl.org/sdk/docs/man4/xhtml/glFenceSync.xml
+glFinalCombinerInputNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
glFinish http://www.opengl.org/sdk/docs/man/xhtml/glFinish.xml
glFinish http://www.opengl.org/sdk/docs/man3/xhtml/glFinish.xml
glFinish http://www.opengl.org/sdk/docs/man4/xhtml/glFinish.xml
+glFinishAsyncSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
+glFinishFenceAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glFinishFenceNV http://www.opengl.org/registry/specs/NV/fence.txt
+glFinishObjectAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glFinishTextureSUNX http://www.opengl.org/registry/specs/SUNX/constant_data.txt
glFlush http://www.opengl.org/sdk/docs/man/xhtml/glFlush.xml
glFlush http://www.opengl.org/sdk/docs/man3/xhtml/glFlush.xml
glFlush http://www.opengl.org/sdk/docs/man4/xhtml/glFlush.xml
glFlushMappedBufferRange http://www.opengl.org/registry/specs/ARB/map_buffer_range.txt
glFlushMappedBufferRange http://www.opengl.org/sdk/docs/man3/xhtml/glFlushMappedBufferRange.xml
glFlushMappedBufferRange http://www.opengl.org/sdk/docs/man4/xhtml/glFlushMappedBufferRange.xml
+glFlushMappedBufferRangeAPPLE http://www.opengl.org/registry/specs/APPLE/flush_buffer_range.txt
+glFlushMappedNamedBufferRangeEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glFlushPixelDataRangeNV http://www.opengl.org/registry/specs/NV/pixel_data_range.txt
+glFlushRasterSGIX http://www.opengl.org/registry/specs/SGIX/flush_raster.txt
+glFlushStaticDataIBM http://www.opengl.org/registry/specs/IBM/static_data.txt
+glFlushVertexArrayRangeAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
+glFlushVertexArrayRangeNV http://www.opengl.org/registry/specs/NV/vertex_array_range.txt
+glFogCoordFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glFogCoordPointer http://www.opengl.org/sdk/docs/man/xhtml/glFogCoordPointer.xml
+glFogCoordPointerEXT http://www.opengl.org/registry/specs/EXT/fog_coord.txt
glFogCoordd http://www.opengl.org/sdk/docs/man/xhtml/glFogCoord.xml
glFogCoorddv http://www.opengl.org/sdk/docs/man/xhtml/glFogCoord.xml
glFogCoordf http://www.opengl.org/sdk/docs/man/xhtml/glFogCoord.xml
glFogCoordfv http://www.opengl.org/sdk/docs/man/xhtml/glFogCoord.xml
+glFogCoordhNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glFogCoordhvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glFogFuncSGIS http://www.opengl.org/registry/specs/SGIS/fog_func.txt
glFogf http://www.opengl.org/sdk/docs/man/xhtml/glFog.xml
glFogfv http://www.opengl.org/sdk/docs/man/xhtml/glFog.xml
glFogi http://www.opengl.org/sdk/docs/man/xhtml/glFog.xml
glFogiv http://www.opengl.org/sdk/docs/man/xhtml/glFog.xml
+glFragmentColorMaterialEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentColorMaterialSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightModelfEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightModelfSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightModelfvEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightModelfvSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightModeliEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightModeliSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightModelivEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightModelivSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightfEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightfSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightfvEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightfvSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightiEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightiSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentLightivEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentLightivSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentMaterialfEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentMaterialfSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentMaterialfvEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentMaterialfvSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentMaterialiEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentMaterialiSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFragmentMaterialivEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glFragmentMaterialivSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glFrameTerminatorGREMEDY http://www.opengl.org/registry/specs/GREMEDY/frame_terminator.txt
+glFrameZoomSGIX http://www.opengl.org/registry/specs/SGIX/framezoom.txt
+glFramebufferDrawBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glFramebufferDrawBuffersEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glFramebufferReadBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glFramebufferRenderbuffer http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferRenderbuffer http://www.opengl.org/sdk/docs/man3/xhtml/glFramebufferRenderbuffer.xml
glFramebufferRenderbuffer http://www.opengl.org/sdk/docs/man4/xhtml/glFramebufferRenderbuffer.xml
@@ -453,28 +707,47 @@ glFramebufferTexture3D http://www.opengl.org/sdk/docs/man3/xhtml/glFramebufferTe
glFramebufferTexture3D http://www.opengl.org/sdk/docs/man4/xhtml/glFramebufferTexture.xml
glFramebufferTexture3DEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glFramebufferTextureARB http://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
+glFramebufferTextureEXT http://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
+glFramebufferTextureEXT http://www.opengl.org/registry/specs/NV/geometry_program4.txt
glFramebufferTextureFaceARB http://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
+glFramebufferTextureFaceEXT http://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
+glFramebufferTextureFaceEXT http://www.opengl.org/registry/specs/NV/geometry_program4.txt
glFramebufferTextureLayer http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glFramebufferTextureLayer http://www.opengl.org/sdk/docs/man3/xhtml/glFramebufferTextureLayer.xml
glFramebufferTextureLayer http://www.opengl.org/sdk/docs/man4/xhtml/glFramebufferTextureLayer.xml
glFramebufferTextureLayerARB http://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
+glFramebufferTextureLayerEXT http://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
+glFramebufferTextureLayerEXT http://www.opengl.org/registry/specs/EXT/texture_array.txt
+glFramebufferTextureLayerEXT http://www.opengl.org/registry/specs/NV/geometry_program4.txt
+glFreeObjectBufferATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glFrontFace http://www.opengl.org/sdk/docs/man/xhtml/glFrontFace.xml
glFrontFace http://www.opengl.org/sdk/docs/man3/xhtml/glFrontFace.xml
glFrontFace http://www.opengl.org/sdk/docs/man4/xhtml/glFrontFace.xml
glFrustum http://www.opengl.org/sdk/docs/man/xhtml/glFrustum.xml
+glFrustumfOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glFrustumxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGenArraySetsEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
+glGenAsyncMarkersSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
glGenBuffers http://www.opengl.org/sdk/docs/man/xhtml/glGenBuffers.xml
glGenBuffers http://www.opengl.org/sdk/docs/man3/xhtml/glGenBuffers.xml
glGenBuffers http://www.opengl.org/sdk/docs/man4/xhtml/glGenBuffers.xml
glGenBuffersARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glGenFencesAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glGenFencesNV http://www.opengl.org/registry/specs/NV/fence.txt
glGenFramebuffers http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGenFramebuffers http://www.opengl.org/sdk/docs/man3/xhtml/glGenFramebuffers.xml
glGenFramebuffers http://www.opengl.org/sdk/docs/man4/xhtml/glGenFramebuffers.xml
glGenFramebuffersEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glGenLists http://www.opengl.org/sdk/docs/man/xhtml/glGenLists.xml
+glGenNamesAMD http://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
+glGenOcclusionQueriesNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glGenPathsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGenPerfMonitorsAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGenProgramPipelines http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glGenProgramPipelines http://www.opengl.org/sdk/docs/man4/xhtml/glGenProgramPipelines.xml
glGenProgramsARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGenProgramsARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glGenProgramsNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGenQueries http://www.opengl.org/sdk/docs/man/xhtml/glGenQueries.xml
glGenQueries http://www.opengl.org/sdk/docs/man3/xhtml/glGenQueries.xml
glGenQueries http://www.opengl.org/sdk/docs/man4/xhtml/glGenQueries.xml
@@ -489,15 +762,20 @@ glGenSamplers http://www.opengl.org/sdk/docs/man4/xhtml/glGenSamplers.xml
glGenTextures http://www.opengl.org/sdk/docs/man/xhtml/glGenTextures.xml
glGenTextures http://www.opengl.org/sdk/docs/man3/xhtml/glGenTextures.xml
glGenTextures http://www.opengl.org/sdk/docs/man4/xhtml/glGenTextures.xml
+glGenTexturesEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
glGenTransformFeedbacks http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glGenTransformFeedbacks http://www.opengl.org/sdk/docs/man4/xhtml/glGenTransformFeedbacks.xml
+glGenTransformFeedbacksNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glGenVertexArrays http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glGenVertexArrays http://www.opengl.org/sdk/docs/man3/xhtml/glGenVertexArrays.xml
glGenVertexArrays http://www.opengl.org/sdk/docs/man4/xhtml/glGenVertexArrays.xml
+glGenVertexArraysAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
glGenerateMipmap http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGenerateMipmap http://www.opengl.org/sdk/docs/man3/xhtml/glGenerateMipmap.xml
glGenerateMipmap http://www.opengl.org/sdk/docs/man4/xhtml/glGenerateMipmap.xml
glGenerateMipmapEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
+glGenerateMultiTexMipmapEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGenerateTextureMipmapEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetActiveAttrib http://www.opengl.org/sdk/docs/man/xhtml/glGetActiveAttrib.xml
glGetActiveAttrib http://www.opengl.org/sdk/docs/man3/xhtml/glGetActiveAttrib.xml
glGetActiveAttrib http://www.opengl.org/sdk/docs/man4/xhtml/glGetActiveAttrib.xml
@@ -524,6 +802,9 @@ glGetActiveUniformName http://www.opengl.org/sdk/docs/man4/xhtml/glGetActiveUnif
glGetActiveUniformsiv http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetActiveUniformsiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetActiveUniformsiv.xml
glGetActiveUniformsiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetActiveUniformsiv.xml
+glGetActiveVaryingNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glGetArrayObjectfvATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glGetArrayObjectivATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetAttachedObjectsARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetAttachedShaders http://www.opengl.org/sdk/docs/man/xhtml/glGetAttachedShaders.xml
glGetAttachedShaders http://www.opengl.org/sdk/docs/man3/xhtml/glGetAttachedShaders.xml
@@ -532,6 +813,11 @@ glGetAttribLocation http://www.opengl.org/sdk/docs/man/xhtml/glGetAttribLocation
glGetAttribLocation http://www.opengl.org/sdk/docs/man3/xhtml/glGetAttribLocation.xml
glGetAttribLocation http://www.opengl.org/sdk/docs/man4/xhtml/glGetAttribLocation.xml
glGetAttribLocationARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glGetBooleanIndexedvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetBooleanIndexedvEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
+glGetBooleanIndexedvEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glGetBooleanIndexedvEXT http://www.opengl.org/registry/specs/NV/explicit_multisample.txt
+glGetBooleanIndexedvEXT http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetBooleani_v http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetBooleani_v http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
glGetBooleanv http://www.opengl.org/sdk/docs/man/xhtml/glGet.xml
@@ -541,6 +827,7 @@ glGetBufferParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetBufferParam
glGetBufferParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glGetBufferParameter.xml
glGetBufferParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glGetBufferParameter.xml
glGetBufferParameterivARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glGetBufferParameterui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glGetBufferPointerv http://www.opengl.org/sdk/docs/man/xhtml/glGetBufferPointerv.xml
glGetBufferPointerv http://www.opengl.org/sdk/docs/man3/xhtml/glGetBufferPointerv.xml
glGetBufferPointerv http://www.opengl.org/sdk/docs/man4/xhtml/glGetBufferPointerv.xml
@@ -550,79 +837,207 @@ glGetBufferSubData http://www.opengl.org/sdk/docs/man3/xhtml/glGetBufferSubData.
glGetBufferSubData http://www.opengl.org/sdk/docs/man4/xhtml/glGetBufferSubData.xml
glGetBufferSubDataARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
glGetClipPlane http://www.opengl.org/sdk/docs/man/xhtml/glGetClipPlane.xml
+glGetClipPlanefOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glGetClipPlanexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetColorTable http://www.opengl.org/sdk/docs/man/xhtml/glGetColorTable.xml
+glGetColorTableEXT http://www.opengl.org/registry/specs/EXT/paletted_texture.txt
glGetColorTableParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glGetColorTableParameter.xml
+glGetColorTableParameterfvEXT http://www.opengl.org/registry/specs/EXT/paletted_texture.txt
+glGetColorTableParameterfvSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
glGetColorTableParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetColorTableParameter.xml
+glGetColorTableParameterivEXT http://www.opengl.org/registry/specs/EXT/paletted_texture.txt
+glGetColorTableParameterivSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
+glGetColorTableSGI http://www.opengl.org/registry/specs/SGI/color_table.txt
+glGetCombinerInputParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetCombinerInputParameterivNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetCombinerOutputParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetCombinerOutputParameterivNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetCombinerStageParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners2.txt
+glGetCompressedMultiTexImageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetCompressedTexImage http://www.opengl.org/sdk/docs/man/xhtml/glGetCompressedTexImage.xml
glGetCompressedTexImage http://www.opengl.org/sdk/docs/man3/xhtml/glGetCompressedTexImage.xml
glGetCompressedTexImage http://www.opengl.org/sdk/docs/man4/xhtml/glGetCompressedTexImage.xml
glGetCompressedTexImageARB http://www.opengl.org/registry/specs/ARB/texture_compression.txt
+glGetCompressedTextureImageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetConvolutionFilter http://www.opengl.org/sdk/docs/man/xhtml/glGetConvolutionFilter.xml
+glGetConvolutionFilterEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glGetConvolutionParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glGetConvolutionParameter.xml
+glGetConvolutionParameterfvEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glGetConvolutionParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetConvolutionParameter.xml
+glGetConvolutionParameterivEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
+glGetConvolutionParameterxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetDebugMessageLogAMD http://www.opengl.org/registry/specs/AMD/debug_output.txt
glGetDebugMessageLogARB http://www.opengl.org/registry/specs/ARB/debug_output.txt
+glGetDetailTexFuncSGIS http://www.opengl.org/registry/specs/SGIS/detail_texture.txt
+glGetDoubleIndexedvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetDoublei_v http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glGetDoublei_vEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetDoublev http://www.opengl.org/sdk/docs/man/xhtml/glGet.xml
glGetDoublev http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetDoublev http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
glGetError http://www.opengl.org/sdk/docs/man/xhtml/glGetError.xml
glGetError http://www.opengl.org/sdk/docs/man3/xhtml/glGetError.xml
glGetError http://www.opengl.org/sdk/docs/man4/xhtml/glGetError.xml
+glGetFenceivNV http://www.opengl.org/registry/specs/NV/fence.txt
+glGetFinalCombinerInputParameterfvNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetFinalCombinerInputParameterivNV http://www.opengl.org/registry/specs/NV/register_combiners.txt
+glGetFixedvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetFloatIndexedvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetFloati_v http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glGetFloati_vEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetFloatv http://www.opengl.org/sdk/docs/man/xhtml/glGet.xml
glGetFloatv http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetFloatv http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
+glGetFogFuncSGIS http://www.opengl.org/registry/specs/SGIS/fog_func.txt
glGetFragDataIndex http://www.opengl.org/registry/specs/ARB/blend_func_extended.txt
glGetFragDataIndex http://www.opengl.org/sdk/docs/man3/xhtml/glGetFragDataIndex.xml
glGetFragDataIndex http://www.opengl.org/sdk/docs/man4/xhtml/glGetFragDataIndex.xml
glGetFragDataLocation http://www.opengl.org/sdk/docs/man3/xhtml/glGetFragDataLocation.xml
glGetFragDataLocation http://www.opengl.org/sdk/docs/man4/xhtml/glGetFragDataLocation.xml
+glGetFragDataLocationEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glGetFragmentLightfvEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glGetFragmentLightfvSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glGetFragmentLightivEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glGetFragmentLightivSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glGetFragmentMaterialfvEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glGetFragmentMaterialfvSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
+glGetFragmentMaterialivEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
+glGetFragmentMaterialivSGIX http://www.opengl.org/registry/specs/SGIX/fragment_specular_lighting.txt
glGetFramebufferAttachmentParameter http://www.opengl.org/sdk/docs/man3/xhtml/glGetFramebufferAttachmentParameter.xml
glGetFramebufferAttachmentParameter http://www.opengl.org/sdk/docs/man4/xhtml/glGetFramebufferAttachmentParameter.xml
glGetFramebufferAttachmentParameteriv http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glGetFramebufferAttachmentParameterivEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
+glGetFramebufferParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetGraphicsResetStatusARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetHandleARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetHistogram http://www.opengl.org/sdk/docs/man/xhtml/glGetHistogram.xml
+glGetHistogramEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glGetHistogramParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glGetHistogramParameter.xml
+glGetHistogramParameterfvEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glGetHistogramParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetHistogramParameter.xml
+glGetHistogramParameterivEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
+glGetHistogramParameterxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetImageTransformParameterfvHP http://www.opengl.org/registry/specs/HP/image_transform.txt
+glGetImageTransformParameterivHP http://www.opengl.org/registry/specs/HP/image_transform.txt
glGetInfoLogARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetInstrumentsSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetInteger64i_v http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetInteger64i_v http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
glGetInteger64v http://www.opengl.org/registry/specs/ARB/sync.txt
glGetInteger64v http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetInteger64v http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
glGetIntegerIndexedivEXT http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/NV/explicit_multisample.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glGetIntegerIndexedvEXT http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetIntegeri_v http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetIntegeri_v http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetIntegeri_v http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
+glGetIntegerui64i_vNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
+glGetIntegerui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glGetIntegerv http://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetIntegerv http://www.opengl.org/sdk/docs/man/xhtml/glGet.xml
glGetIntegerv http://www.opengl.org/sdk/docs/man3/xhtml/glGet.xml
glGetIntegerv http://www.opengl.org/sdk/docs/man4/xhtml/glGet.xml
+glGetInternalformativ http://www.opengl.org/registry/specs/ARB/internalformat_query.txt
glGetLightfv http://www.opengl.org/sdk/docs/man/xhtml/glGetLight.xml
glGetLightiv http://www.opengl.org/sdk/docs/man/xhtml/glGetLight.xml
+glGetLightxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetListParameterfvSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
+glGetListParameterivSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
+glGetMapAttribParameterfvNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glGetMapAttribParameterivNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glGetMapControlPointsNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glGetMapParameterfvNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glGetMapParameterivNV http://www.opengl.org/registry/specs/NV/evaluators.txt
glGetMapdv http://www.opengl.org/sdk/docs/man/xhtml/glGetMap.xml
glGetMapfv http://www.opengl.org/sdk/docs/man/xhtml/glGetMap.xml
glGetMapiv http://www.opengl.org/sdk/docs/man/xhtml/glGetMap.xml
+glGetMapxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetMaterialfv http://www.opengl.org/sdk/docs/man/xhtml/glGetMaterial.xml
glGetMaterialiv http://www.opengl.org/sdk/docs/man/xhtml/glGetMaterial.xml
+glGetMaterialxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetMinmax http://www.opengl.org/sdk/docs/man/xhtml/glGetMinmax.xml
+glGetMinmaxEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glGetMinmaxParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glGetMinmaxParameter.xml
+glGetMinmaxParameterfvEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glGetMinmaxParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetMinmaxParameter.xml
+glGetMinmaxParameterivEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
+glGetMultiTexEnvfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexEnvivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexGendvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexGenfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexGenivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexImageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexLevelParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexLevelParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexParameterIivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexParameterIuivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetMultiTexParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetMultisamplefv http://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glGetMultisamplefv http://www.opengl.org/sdk/docs/man3/xhtml/glGetMultisample.xml
glGetMultisamplefv http://www.opengl.org/sdk/docs/man4/xhtml/glGetMultisample.xml
+glGetMultisamplefvNV http://www.opengl.org/registry/specs/NV/explicit_multisample.txt
+glGetNamedBufferParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedBufferParameterui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glGetNamedBufferPointervEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedBufferSubDataEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedFramebufferAttachmentParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramLocalParameterIivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramLocalParameterIuivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramLocalParameterdvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramLocalParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramStringEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedProgramivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetNamedRenderbufferParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glGetNamedStringARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glGetNamedStringivARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
+glGetObjectBufferfvATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glGetObjectBufferivATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glGetObjectParameterfvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetObjectParameterivAPPLE http://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
glGetObjectParameterivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetOcclusionQueryivNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glGetOcclusionQueryuivNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glGetPathColorGenfvNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathColorGenivNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathCommandsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathCoordsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathDashArrayNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathLengthNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathMetricRangeNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathMetricsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathParameterfvNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathParameterivNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathSpacingNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathTexGenfvNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPathTexGenivNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glGetPerfMonitorCounterDataAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
+glGetPerfMonitorCounterInfoAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
+glGetPerfMonitorCounterStringAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
+glGetPerfMonitorCountersAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
+glGetPerfMonitorGroupStringAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
+glGetPerfMonitorGroupsAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glGetPixelMapfv http://www.opengl.org/sdk/docs/man/xhtml/glGetPixelMap.xml
glGetPixelMapuiv http://www.opengl.org/sdk/docs/man/xhtml/glGetPixelMap.xml
glGetPixelMapusv http://www.opengl.org/sdk/docs/man/xhtml/glGetPixelMap.xml
+glGetPixelTransformParameterfvEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
+glGetPixelTransformParameterivEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
+glGetPointerIndexedvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetPointeri_vEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetPointerv http://www.opengl.org/registry/specs/ARB/debug_output.txt
glGetPointerv http://www.opengl.org/sdk/docs/man/xhtml/glGetPointerv.xml
+glGetPointervEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glGetPointervEXT http://www.opengl.org/registry/specs/SGIX/instruments.txt
glGetPolygonStipple http://www.opengl.org/sdk/docs/man/xhtml/glGetPolygonStipple.xml
glGetProgramBinary http://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glGetProgramBinary http://www.opengl.org/sdk/docs/man4/xhtml/glGetProgramBinary.xml
+glGetProgramEnvParameterIivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glGetProgramEnvParameterIuivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramEnvParameterdvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramEnvParameterdvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetProgramEnvParameterfvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
@@ -630,10 +1045,18 @@ glGetProgramEnvParameterfvARB http://www.opengl.org/registry/specs/ARB/vertex_pr
glGetProgramInfoLog http://www.opengl.org/sdk/docs/man/xhtml/glGetProgramInfoLog.xml
glGetProgramInfoLog http://www.opengl.org/sdk/docs/man3/xhtml/glGetProgramInfoLog.xml
glGetProgramInfoLog http://www.opengl.org/sdk/docs/man4/xhtml/glGetProgramInfoLog.xml
+glGetProgramLocalParameterIivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glGetProgramLocalParameterIuivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
glGetProgramLocalParameterdvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramLocalParameterdvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glGetProgramLocalParameterdvARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
glGetProgramLocalParameterfvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramLocalParameterfvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glGetProgramLocalParameterfvARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glGetProgramNamedParameterdvNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glGetProgramNamedParameterfvNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glGetProgramParameterdvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glGetProgramParameterfvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetProgramPipelineInfoLog http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glGetProgramPipelineInfoLog http://www.opengl.org/sdk/docs/man4/xhtml/glGetProgramPipelineInfoLog.xml
glGetProgramPipelineiv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
@@ -642,16 +1065,19 @@ glGetProgramStageiv http://www.opengl.org/registry/specs/ARB/shader_subroutine.t
glGetProgramStageiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetProgramStage.xml
glGetProgramStringARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramStringARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glGetProgramStringNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetProgramiv http://www.opengl.org/sdk/docs/man/xhtml/glGetProgram.xml
glGetProgramiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetProgram.xml
glGetProgramiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetProgram.xml
glGetProgramivARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glGetProgramivARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glGetProgramivNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetQueryIndexediv http://www.opengl.org/registry/specs/ARB/transform_feedback3.txt
glGetQueryIndexediv http://www.opengl.org/sdk/docs/man4/xhtml/glGetQueryIndexed.xml
glGetQueryObjecti64v http://www.opengl.org/registry/specs/ARB/timer_query.txt
glGetQueryObjecti64v http://www.opengl.org/sdk/docs/man3/xhtml/glGetQueryObject.xml
glGetQueryObjecti64v http://www.opengl.org/sdk/docs/man4/xhtml/glGetQueryObject.xml
+glGetQueryObjecti64vEXT http://www.opengl.org/registry/specs/EXT/timer_query.txt
glGetQueryObjectiv http://www.opengl.org/sdk/docs/man/xhtml/glGetQueryObject.xml
glGetQueryObjectiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetQueryObject.xml
glGetQueryObjectiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetQueryObject.xml
@@ -659,6 +1085,7 @@ glGetQueryObjectivARB http://www.opengl.org/registry/specs/ARB/occlusion_query.t
glGetQueryObjectui64v http://www.opengl.org/registry/specs/ARB/timer_query.txt
glGetQueryObjectui64v http://www.opengl.org/sdk/docs/man3/xhtml/glGetQueryObject.xml
glGetQueryObjectui64v http://www.opengl.org/sdk/docs/man4/xhtml/glGetQueryObject.xml
+glGetQueryObjectui64vEXT http://www.opengl.org/registry/specs/EXT/timer_query.txt
glGetQueryObjectuiv http://www.opengl.org/sdk/docs/man/xhtml/glGetQueryObject.xml
glGetQueryObjectuiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetQueryObject.xml
glGetQueryObjectuiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetQueryObject.xml
@@ -680,6 +1107,7 @@ glGetSamplerParameteriv http://www.opengl.org/registry/specs/ARB/sampler_objects
glGetSamplerParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glGetSamplerParameter.xml
glGetSamplerParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glGetSamplerParameter.xml
glGetSeparableFilter http://www.opengl.org/sdk/docs/man/xhtml/glGetSeparableFilter.xml
+glGetSeparableFilterEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
glGetShaderInfoLog http://www.opengl.org/sdk/docs/man/xhtml/glGetShaderInfoLog.xml
glGetShaderInfoLog http://www.opengl.org/sdk/docs/man3/xhtml/glGetShaderInfoLog.xml
glGetShaderInfoLog http://www.opengl.org/sdk/docs/man4/xhtml/glGetShaderInfoLog.xml
@@ -692,6 +1120,7 @@ glGetShaderSourceARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glGetShaderiv http://www.opengl.org/sdk/docs/man/xhtml/glGetShader.xml
glGetShaderiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetShader.xml
glGetShaderiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetShader.xml
+glGetSharpenTexFuncSGIS http://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt
glGetString http://www.opengl.org/sdk/docs/man/xhtml/glGetString.xml
glGetString http://www.opengl.org/sdk/docs/man3/xhtml/glGetString.xml
glGetString http://www.opengl.org/sdk/docs/man4/xhtml/glGetString.xml
@@ -706,9 +1135,12 @@ glGetSynciv http://www.opengl.org/sdk/docs/man3/xhtml/glGetSync.xml
glGetSynciv http://www.opengl.org/sdk/docs/man4/xhtml/glGetSync.xml
glGetTexEnvfv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexEnv.xml
glGetTexEnviv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexEnv.xml
+glGetTexEnvxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetTexFilterFuncSGIS http://www.opengl.org/registry/specs/SGIS/texture_filter4.txt
glGetTexGendv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexGen.xml
glGetTexGenfv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexGen.xml
glGetTexGeniv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexGen.xml
+glGetTexGenxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glGetTexImage http://www.opengl.org/sdk/docs/man/xhtml/glGetTexImage.xml
glGetTexImage http://www.opengl.org/sdk/docs/man3/xhtml/glGetTexImage.xml
glGetTexImage http://www.opengl.org/sdk/docs/man4/xhtml/glGetTexImage.xml
@@ -718,17 +1150,31 @@ glGetTexLevelParameterfv http://www.opengl.org/sdk/docs/man4/xhtml/glGetTexLevel
glGetTexLevelParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexLevelParameter.xml
glGetTexLevelParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glGetTexLevelParameter.xml
glGetTexLevelParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glGetTexLevelParameter.xml
+glGetTexLevelParameterxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetTexParameterPointervAPPLE http://www.opengl.org/registry/specs/APPLE/texture_range.txt
glGetTexParameterfv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexParameter.xml
glGetTexParameterfv http://www.opengl.org/sdk/docs/man3/xhtml/glGetTexParameter.xml
glGetTexParameterfv http://www.opengl.org/sdk/docs/man4/xhtml/glGetTexParameter.xml
glGetTexParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glGetTexParameter.xml
glGetTexParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glGetTexParameter.xml
glGetTexParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glGetTexParameter.xml
+glGetTexParameterxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glGetTextureImageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureLevelParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureLevelParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureParameterIivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureParameterIuivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTextureParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetTrackMatrixivNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetTransformFeedbackVarying http://www.opengl.org/sdk/docs/man3/xhtml/glGetTransformFeedbackVarying.xml
glGetTransformFeedbackVarying http://www.opengl.org/sdk/docs/man4/xhtml/glGetTransformFeedbackVarying.xml
+glGetTransformFeedbackVaryingEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glGetTransformFeedbackVaryingNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glGetUniformBlockIndex http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetUniformBlockIndex http://www.opengl.org/sdk/docs/man3/xhtml/glGetUniformBlockIndex.xml
glGetUniformBlockIndex http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniformBlockIndex.xml
+glGetUniformBufferSizeEXT http://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glGetUniformIndices http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glGetUniformIndices http://www.opengl.org/sdk/docs/man3/xhtml/glGetUniformIndices.xml
glGetUniformIndices http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniformIndices.xml
@@ -736,6 +1182,7 @@ glGetUniformLocation http://www.opengl.org/sdk/docs/man/xhtml/glGetUniformLocati
glGetUniformLocation http://www.opengl.org/sdk/docs/man3/xhtml/glGetUniformLocation.xml
glGetUniformLocation http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniformLocation.xml
glGetUniformLocationARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetUniformOffsetEXT http://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glGetUniformSubroutineuiv http://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glGetUniformSubroutineuiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniformSubroutine.xml
glGetUniformdv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
@@ -743,36 +1190,65 @@ glGetUniformfv http://www.opengl.org/sdk/docs/man/xhtml/glGetUniform.xml
glGetUniformfv http://www.opengl.org/sdk/docs/man3/xhtml/glGetUniform.xml
glGetUniformfv http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniform.xml
glGetUniformfvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetUniformi64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glGetUniformiv http://www.opengl.org/sdk/docs/man/xhtml/glGetUniform.xml
glGetUniformiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetUniform.xml
glGetUniformiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetUniform.xml
glGetUniformivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glGetUniformui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glGetUniformui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glGetUniformuivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glGetVariantArrayObjectfvATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glGetVariantArrayObjectivATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glGetVaryingLocationNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glGetVertexArrayIntegeri_vEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetVertexArrayIntegervEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetVertexArrayPointeri_vEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetVertexArrayPointervEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glGetVertexAttribArrayObjectfvATI http://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
+glGetVertexAttribArrayObjectivATI http://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
glGetVertexAttribIiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttrib.xml
glGetVertexAttribIiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
+glGetVertexAttribIivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glGetVertexAttribIivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glGetVertexAttribIuiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttrib.xml
glGetVertexAttribIuiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
+glGetVertexAttribIuivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glGetVertexAttribIuivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glGetVertexAttribLdv http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glGetVertexAttribLdv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
+glGetVertexAttribLdvEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glGetVertexAttribLi64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glGetVertexAttribLui64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glGetVertexAttribPointerv http://www.opengl.org/sdk/docs/man/xhtml/glGetVertexAttribPointerv.xml
glGetVertexAttribPointerv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttribPointerv.xml
glGetVertexAttribPointerv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttribPointerv.xml
glGetVertexAttribPointervARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribPointervARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glGetVertexAttribPointervNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribdv http://www.opengl.org/sdk/docs/man/xhtml/glGetVertexAttrib.xml
glGetVertexAttribdv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttrib.xml
glGetVertexAttribdv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
glGetVertexAttribdvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribdvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glGetVertexAttribdvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribfv http://www.opengl.org/sdk/docs/man/xhtml/glGetVertexAttrib.xml
glGetVertexAttribfv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttrib.xml
glGetVertexAttribfv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
glGetVertexAttribfvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribfvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glGetVertexAttribfvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glGetVertexAttribiv http://www.opengl.org/sdk/docs/man/xhtml/glGetVertexAttrib.xml
glGetVertexAttribiv http://www.opengl.org/sdk/docs/man3/xhtml/glGetVertexAttrib.xml
glGetVertexAttribiv http://www.opengl.org/sdk/docs/man4/xhtml/glGetVertexAttrib.xml
glGetVertexAttribivARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glGetVertexAttribivARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glGetVertexAttribivNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glGetVideoCaptureivNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glGetVideoi64vNV http://www.opengl.org/registry/specs/NV/present_video.txt
+glGetVideoivNV http://www.opengl.org/registry/specs/NV/present_video.txt
+glGetVideoui64vNV http://www.opengl.org/registry/specs/NV/present_video.txt
+glGetVideouivNV http://www.opengl.org/registry/specs/NV/present_video.txt
glGetnColorTableARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnCompressedTexImageARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnConvolutionFilterARB http://www.opengl.org/registry/specs/ARB/robustness.txt
@@ -791,12 +1267,28 @@ glGetnUniformdvARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformfvARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformivARB http://www.opengl.org/registry/specs/ARB/robustness.txt
glGetnUniformuivARB http://www.opengl.org/registry/specs/ARB/robustness.txt
+glGlobalAlphaFactorbSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactordSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactorfSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactoriSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactorsSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactorubSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactoruiSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
+glGlobalAlphaFactorusSUN http://www.opengl.org/registry/specs/SUN/global_alpha.txt
glHint http://www.opengl.org/sdk/docs/man/xhtml/glHint.xml
glHint http://www.opengl.org/sdk/docs/man3/xhtml/glHint.xml
glHint http://www.opengl.org/sdk/docs/man4/xhtml/glHint.xml
glHistogram http://www.opengl.org/sdk/docs/man/xhtml/glHistogram.xml
+glHistogramEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
+glImageTransformParameterfHP http://www.opengl.org/registry/specs/HP/image_transform.txt
+glImageTransformParameterfvHP http://www.opengl.org/registry/specs/HP/image_transform.txt
+glImageTransformParameteriHP http://www.opengl.org/registry/specs/HP/image_transform.txt
+glImageTransformParameterivHP http://www.opengl.org/registry/specs/HP/image_transform.txt
+glImportSyncEXT http://www.opengl.org/registry/specs/EXT/x11_sync_object.txt
+glIndexFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glIndexMask http://www.opengl.org/sdk/docs/man/xhtml/glIndexMask.xml
glIndexPointer http://www.opengl.org/sdk/docs/man/xhtml/glIndexPointer.xml
+glIndexPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
glIndexd http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
glIndexdv http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
glIndexf http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
@@ -808,26 +1300,43 @@ glIndexsv http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
glIndexub http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
glIndexubv http://www.opengl.org/sdk/docs/man/xhtml/glIndex.xml
glInitNames http://www.opengl.org/sdk/docs/man/xhtml/glInitNames.xml
+glInstrumentsBufferSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
glInterleavedArrays http://www.opengl.org/sdk/docs/man/xhtml/glInterleavedArrays.xml
+glInterpolatePathsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glIsArraySetEXT http://www.opengl.org/registry/specs/EXT/vertex_array_set.txt
+glIsAsyncMarkerSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
glIsBuffer http://www.opengl.org/sdk/docs/man/xhtml/glIsBuffer.xml
glIsBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glIsBuffer.xml
glIsBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glIsBuffer.xml
glIsBufferARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glIsBufferResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glIsEnabled http://www.opengl.org/sdk/docs/man/xhtml/glIsEnabled.xml
glIsEnabled http://www.opengl.org/sdk/docs/man3/xhtml/glIsEnabled.xml
glIsEnabled http://www.opengl.org/sdk/docs/man4/xhtml/glIsEnabled.xml
glIsEnabledIndexedEXT http://www.opengl.org/registry/specs/ARB/viewport_array.txt
+glIsEnabledIndexedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glIsEnabledIndexedEXT http://www.opengl.org/registry/specs/EXT/draw_buffers2.txt
+glIsFenceAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glIsFenceNV http://www.opengl.org/registry/specs/NV/fence.txt
glIsFramebuffer http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glIsFramebuffer http://www.opengl.org/sdk/docs/man3/xhtml/glIsFramebuffer.xml
glIsFramebuffer http://www.opengl.org/sdk/docs/man4/xhtml/glIsFramebuffer.xml
glIsFramebufferEXT http://www.opengl.org/registry/specs/EXT/framebuffer_object.txt
glIsList http://www.opengl.org/sdk/docs/man/xhtml/glIsList.xml
+glIsNameAMD http://www.opengl.org/registry/specs/AMD/name_gen_delete.txt
+glIsNamedBufferResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glIsNamedStringARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
+glIsObjectBufferATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
+glIsOcclusionQueryNV http://www.opengl.org/registry/specs/NV/occlusion_query.txt
+glIsPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glIsPointInFillPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glIsPointInStrokePathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glIsProgram http://www.opengl.org/sdk/docs/man/xhtml/glIsProgram.xml
glIsProgram http://www.opengl.org/sdk/docs/man3/xhtml/glIsProgram.xml
glIsProgram http://www.opengl.org/sdk/docs/man4/xhtml/glIsProgram.xml
glIsProgramARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glIsProgramARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glIsProgramNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glIsProgramPipeline http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glIsProgramPipeline http://www.opengl.org/sdk/docs/man4/xhtml/glIsProgramPipeline.xml
glIsQuery http://www.opengl.org/sdk/docs/man/xhtml/glIsQuery.xml
@@ -850,11 +1359,17 @@ glIsSync http://www.opengl.org/sdk/docs/man4/xhtml/glIsSync.xml
glIsTexture http://www.opengl.org/sdk/docs/man/xhtml/glIsTexture.xml
glIsTexture http://www.opengl.org/sdk/docs/man3/xhtml/glIsTexture.xml
glIsTexture http://www.opengl.org/sdk/docs/man4/xhtml/glIsTexture.xml
+glIsTextureEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
glIsTransformFeedback http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glIsTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glIsTransformFeedback.xml
+glIsTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glIsVertexArray http://www.opengl.org/registry/specs/ARB/vertex_array_object.txt
glIsVertexArray http://www.opengl.org/sdk/docs/man3/xhtml/glIsVertexArray.xml
glIsVertexArray http://www.opengl.org/sdk/docs/man4/xhtml/glIsVertexArray.xml
+glIsVertexArrayAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_object.txt
+glIsVertexAttribEnabledAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
+glJoinSwapGroupSGIX http://www.opengl.org/registry/specs/SGIX/swap_group.txt
+glLightEnviEXT http://www.opengl.org/registry/specs/EXT/fragment_lighting.txt
glLightModelf http://www.opengl.org/sdk/docs/man/xhtml/glLightModel.xml
glLightModelfv http://www.opengl.org/sdk/docs/man/xhtml/glLightModel.xml
glLightModeli http://www.opengl.org/sdk/docs/man/xhtml/glLightModel.xml
@@ -867,59 +1382,118 @@ glLineStipple http://www.opengl.org/sdk/docs/man/xhtml/glLineStipple.xml
glLineWidth http://www.opengl.org/sdk/docs/man/xhtml/glLineWidth.xml
glLineWidth http://www.opengl.org/sdk/docs/man3/xhtml/glLineWidth.xml
glLineWidth http://www.opengl.org/sdk/docs/man4/xhtml/glLineWidth.xml
+glLineWidthxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLinkProgram http://www.opengl.org/sdk/docs/man/xhtml/glLinkProgram.xml
glLinkProgram http://www.opengl.org/sdk/docs/man3/xhtml/glLinkProgram.xml
glLinkProgram http://www.opengl.org/sdk/docs/man4/xhtml/glLinkProgram.xml
glLinkProgramARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glListBase http://www.opengl.org/sdk/docs/man/xhtml/glListBase.xml
+glListParameterfSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
+glListParameterfvSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
+glListParameteriSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
+glListParameterivSGIX http://www.opengl.org/registry/specs/SGIX/list_priority.txt
glLoadIdentity http://www.opengl.org/sdk/docs/man/xhtml/glLoadIdentity.xml
glLoadMatrixd http://www.opengl.org/sdk/docs/man/xhtml/glLoadMatrix.xml
glLoadMatrixf http://www.opengl.org/sdk/docs/man/xhtml/glLoadMatrix.xml
+glLoadMatrixxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLoadName http://www.opengl.org/sdk/docs/man/xhtml/glLoadName.xml
+glLoadProgramNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glLoadTransposeMatrixd http://www.opengl.org/sdk/docs/man/xhtml/glLoadTransposeMatrix.xml
glLoadTransposeMatrixf http://www.opengl.org/sdk/docs/man/xhtml/glLoadTransposeMatrix.xml
+glLoadTransposeMatrixxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glLogicOp http://www.opengl.org/sdk/docs/man/xhtml/glLogicOp.xml
glLogicOp http://www.opengl.org/sdk/docs/man3/xhtml/glLogicOp.xml
glLogicOp http://www.opengl.org/sdk/docs/man4/xhtml/glLogicOp.xml
+glMakeBufferNonResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glMakeBufferResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glMakeNamedBufferNonResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glMakeNamedBufferResidentNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glMap1d http://www.opengl.org/sdk/docs/man/xhtml/glMap1.xml
glMap1f http://www.opengl.org/sdk/docs/man/xhtml/glMap1.xml
+glMap1xOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMap2d http://www.opengl.org/sdk/docs/man/xhtml/glMap2.xml
glMap2f http://www.opengl.org/sdk/docs/man/xhtml/glMap2.xml
+glMap2xOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMapBuffer http://www.opengl.org/sdk/docs/man/xhtml/glMapBuffer.xml
glMapBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glMapBuffer.xml
glMapBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glMapBuffer.xml
glMapBufferRange http://www.opengl.org/sdk/docs/man3/xhtml/glMapBufferRange.xml
glMapBufferRange http://www.opengl.org/sdk/docs/man4/xhtml/glMapBufferRange.xml
+glMapControlPointsNV http://www.opengl.org/registry/specs/NV/evaluators.txt
glMapGrid1d http://www.opengl.org/sdk/docs/man/xhtml/glMapGrid.xml
glMapGrid1f http://www.opengl.org/sdk/docs/man/xhtml/glMapGrid.xml
+glMapGrid1xOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMapGrid2d http://www.opengl.org/sdk/docs/man/xhtml/glMapGrid.xml
glMapGrid2f http://www.opengl.org/sdk/docs/man/xhtml/glMapGrid.xml
+glMapGrid2xOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glMapNamedBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMapParameterfvNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glMapParameterivNV http://www.opengl.org/registry/specs/NV/evaluators.txt
+glMapVertexAttrib1dAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
+glMapVertexAttrib1fAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
+glMapVertexAttrib2dAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
+glMapVertexAttrib2fAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_program_evaluators.txt
glMaterialf http://www.opengl.org/sdk/docs/man/xhtml/glMaterial.xml
glMaterialfv http://www.opengl.org/sdk/docs/man/xhtml/glMaterial.xml
glMateriali http://www.opengl.org/sdk/docs/man/xhtml/glMaterial.xml
glMaterialiv http://www.opengl.org/sdk/docs/man/xhtml/glMaterial.xml
+glMatrixFrustumEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixIndexPointerARB http://www.opengl.org/registry/specs/ARB/matrix_palette.txt
+glMatrixLoadIdentityEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixLoadTransposedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixLoadTransposefEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixLoaddEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixLoadfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMatrixMode http://www.opengl.org/sdk/docs/man/xhtml/glMatrixMode.xml
+glMatrixMultTransposedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixMultTransposefEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixMultdEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixMultfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixOrthoEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixPopEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixPushEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixRotatedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixRotatefEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixScaledEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixScalefEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixTranslatedEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMatrixTranslatefEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMemoryBarrier http://www.opengl.org/registry/specs/ARB/shader_image_load_store.txt
+glMemoryBarrierEXT http://www.opengl.org/registry/specs/EXT/shader_image_load_store.txt
glMinSampleShading http://www.opengl.org/sdk/docs/man4/xhtml/glMinSampleShading.xml
glMinSampleShadingARB http://www.opengl.org/registry/specs/ARB/sample_shading.txt
glMinmax http://www.opengl.org/sdk/docs/man/xhtml/glMinmax.xml
+glMinmaxEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glMultMatrixd http://www.opengl.org/sdk/docs/man/xhtml/glMultMatrix.xml
glMultMatrixf http://www.opengl.org/sdk/docs/man/xhtml/glMultMatrix.xml
+glMultMatrixxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMultTransposeMatrixd http://www.opengl.org/sdk/docs/man/xhtml/glMultTransposeMatrix.xml
glMultTransposeMatrixf http://www.opengl.org/sdk/docs/man/xhtml/glMultTransposeMatrix.xml
+glMultTransposeMatrixxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glMultiDrawArrays http://www.opengl.org/sdk/docs/man/xhtml/glMultiDrawArrays.xml
glMultiDrawArrays http://www.opengl.org/sdk/docs/man3/xhtml/glMultiDrawArrays.xml
glMultiDrawArrays http://www.opengl.org/sdk/docs/man4/xhtml/glMultiDrawArrays.xml
+glMultiDrawArraysEXT http://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt
+glMultiDrawArraysIndirectAMD http://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt
+glMultiDrawElementArrayAPPLE http://www.opengl.org/registry/specs/APPLE/element_array.txt
glMultiDrawElements http://www.opengl.org/sdk/docs/man/xhtml/glMultiDrawElements.xml
glMultiDrawElements http://www.opengl.org/sdk/docs/man3/xhtml/glMultiDrawElements.xml
glMultiDrawElements http://www.opengl.org/sdk/docs/man4/xhtml/glMultiDrawElements.xml
glMultiDrawElementsBaseVertex http://www.opengl.org/registry/specs/ARB/draw_elements_base_vertex.txt
glMultiDrawElementsBaseVertex http://www.opengl.org/sdk/docs/man3/xhtml/glMultiDrawElementsBaseVertex.xml
glMultiDrawElementsBaseVertex http://www.opengl.org/sdk/docs/man4/xhtml/glMultiDrawElementsBaseVertex.xml
+glMultiDrawElementsEXT http://www.opengl.org/registry/specs/EXT/multi_draw_arrays.txt
+glMultiDrawElementsIndirectAMD http://www.opengl.org/registry/specs/AMD/multi_draw_indirect.txt
+glMultiDrawRangeElementArrayAPPLE http://www.opengl.org/registry/specs/APPLE/element_array.txt
+glMultiModeDrawArraysIBM http://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
+glMultiModeDrawElementsIBM http://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
+glMultiTexBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glMultiTexCoord1d http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord1dv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord1f http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord1fv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
+glMultiTexCoord1hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glMultiTexCoord1hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord1i http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord1iv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord1s http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
@@ -928,6 +1502,8 @@ glMultiTexCoord2d http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord2dv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord2f http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord2fv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
+glMultiTexCoord2hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glMultiTexCoord2hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord2i http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord2iv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord2s http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
@@ -936,6 +1512,8 @@ glMultiTexCoord3d http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord3dv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord3f http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord3fv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
+glMultiTexCoord3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glMultiTexCoord3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord3i http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord3iv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord3s http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
@@ -944,6 +1522,8 @@ glMultiTexCoord4d http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord4dv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord4f http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord4fv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
+glMultiTexCoord4hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glMultiTexCoord4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glMultiTexCoord4i http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord4iv http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
glMultiTexCoord4s http://www.opengl.org/sdk/docs/man/xhtml/glMultiTexCoord.xml
@@ -956,29 +1536,111 @@ glMultiTexCoordP3ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10
glMultiTexCoordP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP4ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glMultiTexCoordP4uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
+glMultiTexCoordPointerEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexEnvfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexEnvfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexEnviEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexEnvivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGendEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGendvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGenfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGenfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGeniEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexGenivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameterIivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameterIuivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameterfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameteriEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexRenderbufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glMultiTexSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedBufferDataEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedBufferSubDataEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedCopyBufferSubDataEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferRenderbufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTexture1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTexture2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTexture3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTextureEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTextureFaceEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedFramebufferTextureLayerEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameter4dEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameter4dvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameter4fEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameter4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameterI4iEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameterI4ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameterI4uiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameterI4uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParameters4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParametersI4ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramLocalParametersI4uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedProgramStringEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedRenderbufferStorageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedRenderbufferStorageMultisampleCoverageEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glNamedRenderbufferStorageMultisampleEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glNamedStringARB http://www.opengl.org/registry/specs/ARB/shading_language_include.txt
glNewList http://www.opengl.org/sdk/docs/man/xhtml/glNewList.xml
+glNewObjectBufferATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glNormal3b http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3bv http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3d http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3dv http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3f http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
+glNormal3fVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glNormal3fVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glNormal3fv http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
+glNormal3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glNormal3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glNormal3i http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3iv http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3s http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
glNormal3sv http://www.opengl.org/sdk/docs/man/xhtml/glNormal.xml
+glNormalFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glNormalP3ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glNormalP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glNormalPointer http://www.opengl.org/sdk/docs/man/xhtml/glNormalPointer.xml
+glNormalPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glNormalPointervINTEL http://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
+glObjectPurgeableAPPLE http://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
+glObjectUnpurgeableAPPLE http://www.opengl.org/registry/specs/APPLE/object_purgeable.txt
glOrtho http://www.opengl.org/sdk/docs/man/xhtml/glOrtho.xml
+glOrthofOES http://www.opengl.org/registry/specs/OES/OES_single_precision.txt
+glOrthoxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPassThrough http://www.opengl.org/sdk/docs/man/xhtml/glPassThrough.xml
+glPassThroughxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPatchParameterfv http://www.opengl.org/registry/specs/ARB/tessellation_shader.txt
glPatchParameterfv http://www.opengl.org/sdk/docs/man4/xhtml/glPatchParameter.xml
glPatchParameteri http://www.opengl.org/registry/specs/ARB/tessellation_shader.txt
glPatchParameteri http://www.opengl.org/sdk/docs/man4/xhtml/glPatchParameter.xml
+glPathColorGenNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathCommandsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathCoordsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathCoverDepthFuncNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathDashArrayNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathFogGenNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathGlyphRangeNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathGlyphsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathParameterfNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathParameterfvNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathParameteriNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathParameterivNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathStencilDepthOffsetNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathStencilFuncNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathStringNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathSubCommandsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathSubCoordsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glPathTexGenNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glPauseTransformFeedback http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glPauseTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glPauseTransformFeedback.xml
+glPauseTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
+glPixelDataRangeNV http://www.opengl.org/registry/specs/NV/pixel_data_range.txt
glPixelMapfv http://www.opengl.org/sdk/docs/man/xhtml/glPixelMap.xml
glPixelMapuiv http://www.opengl.org/sdk/docs/man/xhtml/glPixelMap.xml
glPixelMapusv http://www.opengl.org/sdk/docs/man/xhtml/glPixelMap.xml
@@ -988,9 +1650,17 @@ glPixelStoref http://www.opengl.org/sdk/docs/man4/xhtml/glPixelStore.xml
glPixelStorei http://www.opengl.org/sdk/docs/man/xhtml/glPixelStore.xml
glPixelStorei http://www.opengl.org/sdk/docs/man3/xhtml/glPixelStore.xml
glPixelStorei http://www.opengl.org/sdk/docs/man4/xhtml/glPixelStore.xml
+glPixelTexGenSGIX http://www.opengl.org/registry/specs/SGIX/sgix_pixel_texture.txt
glPixelTransferf http://www.opengl.org/sdk/docs/man/xhtml/glPixelTransfer.xml
glPixelTransferi http://www.opengl.org/sdk/docs/man/xhtml/glPixelTransfer.xml
+glPixelTransferxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glPixelTransformParameterfEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
+glPixelTransformParameterfvEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
+glPixelTransformParameteriEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
+glPixelTransformParameterivEXT http://www.opengl.org/registry/specs/EXT/pixel_transform.txt
glPixelZoom http://www.opengl.org/sdk/docs/man/xhtml/glPixelZoom.xml
+glPixelZoomxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glPointAlongPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glPointParameterf http://www.opengl.org/sdk/docs/man/xhtml/glPointParameter.xml
glPointParameterf http://www.opengl.org/sdk/docs/man3/xhtml/glPointParameter.xml
glPointParameterf http://www.opengl.org/sdk/docs/man4/xhtml/glPointParameter.xml
@@ -1002,28 +1672,45 @@ glPointParameterfvARB http://www.opengl.org/registry/specs/ARB/point_parameters.
glPointParameteri http://www.opengl.org/sdk/docs/man/xhtml/glPointParameter.xml
glPointParameteri http://www.opengl.org/sdk/docs/man3/xhtml/glPointParameter.xml
glPointParameteri http://www.opengl.org/sdk/docs/man4/xhtml/glPointParameter.xml
+glPointParameteriNV http://www.opengl.org/registry/specs/NV/point_sprite.txt
glPointParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glPointParameter.xml
glPointParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glPointParameter.xml
glPointParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glPointParameter.xml
+glPointParameterivNV http://www.opengl.org/registry/specs/NV/point_sprite.txt
+glPointParameterxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPointSize http://www.opengl.org/sdk/docs/man/xhtml/glPointSize.xml
glPointSize http://www.opengl.org/sdk/docs/man3/xhtml/glPointSize.xml
glPointSize http://www.opengl.org/sdk/docs/man4/xhtml/glPointSize.xml
+glPointSizexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glPollAsyncSGIX http://www.opengl.org/registry/specs/SGIX/async.txt
+glPollInstrumentsSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
glPolygonMode http://www.opengl.org/sdk/docs/man/xhtml/glPolygonMode.xml
glPolygonMode http://www.opengl.org/sdk/docs/man3/xhtml/glPolygonMode.xml
glPolygonMode http://www.opengl.org/sdk/docs/man4/xhtml/glPolygonMode.xml
glPolygonOffset http://www.opengl.org/sdk/docs/man/xhtml/glPolygonOffset.xml
glPolygonOffset http://www.opengl.org/sdk/docs/man3/xhtml/glPolygonOffset.xml
glPolygonOffset http://www.opengl.org/sdk/docs/man4/xhtml/glPolygonOffset.xml
+glPolygonOffsetEXT http://www.opengl.org/registry/specs/EXT/polygon_offset.txt
+glPolygonOffsetxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glPolygonStipple http://www.opengl.org/sdk/docs/man/xhtml/glPolygonStipple.xml
glPopAttrib http://www.opengl.org/sdk/docs/man/xhtml/glPushAttrib.xml
glPopClientAttrib http://www.opengl.org/sdk/docs/man/xhtml/glPushClientAttrib.xml
glPopMatrix http://www.opengl.org/sdk/docs/man/xhtml/glPushMatrix.xml
glPopName http://www.opengl.org/sdk/docs/man/xhtml/glPushName.xml
+glPresentFrameDualFillNV http://www.opengl.org/registry/specs/NV/present_video.txt
+glPresentFrameKeyedNV http://www.opengl.org/registry/specs/NV/present_video.txt
glPrimitiveRestartIndex http://www.opengl.org/sdk/docs/man3/xhtml/glPrimitiveRestartIndex.xml
glPrimitiveRestartIndex http://www.opengl.org/sdk/docs/man4/xhtml/glPrimitiveRestartIndex.xml
+glPrimitiveRestartIndexNV http://www.opengl.org/registry/specs/NV/primitive_restart.txt
+glPrimitiveRestartNV http://www.opengl.org/registry/specs/NV/primitive_restart.txt
glPrioritizeTextures http://www.opengl.org/sdk/docs/man/xhtml/glPrioritizeTextures.xml
+glPrioritizeTexturesEXT http://www.opengl.org/registry/specs/EXT/texture_object.txt
+glPrioritizeTexturesxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glProgramBinary http://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glProgramBinary http://www.opengl.org/sdk/docs/man4/xhtml/glProgramBinary.xml
+glProgramBufferParametersIivNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glProgramBufferParametersIuivNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
+glProgramBufferParametersfvNV http://www.opengl.org/registry/specs/NV/parameter_buffer_object.txt
glProgramEnvParameter4dARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameter4dvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
@@ -1032,18 +1719,45 @@ glProgramEnvParameter4fARB http://www.opengl.org/registry/specs/ARB/fragment_pro
glProgramEnvParameter4fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramEnvParameter4fvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramEnvParameter4fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glProgramEnvParameterI4iNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramEnvParameterI4ivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramEnvParameterI4uiNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramEnvParameterI4uivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramEnvParametersI4ivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramEnvParametersI4uivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
glProgramLocalParameter4dARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glProgramLocalParameter4dARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4dvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4dvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glProgramLocalParameter4dvARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4fARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glProgramLocalParameter4fARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
glProgramLocalParameter4fvARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramLocalParameter4fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
+glProgramLocalParameter4fvARB http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glProgramLocalParameterI4iNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramLocalParameterI4ivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramLocalParameterI4uiNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramLocalParameterI4uivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramLocalParametersI4ivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramLocalParametersI4uivNV http://www.opengl.org/registry/specs/NV/gpu_program4.txt
+glProgramNamedParameter4dNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glProgramNamedParameter4dvNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glProgramNamedParameter4fNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glProgramNamedParameter4fvNV http://www.opengl.org/registry/specs/NV/fragment_program.txt
+glProgramParameter4dNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glProgramParameter4dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glProgramParameter4fNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glProgramParameter4fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramParameteri http://www.opengl.org/registry/specs/ARB/get_program_binary.txt
glProgramParameteri http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramParameteri http://www.opengl.org/sdk/docs/man4/xhtml/glProgramParameter.xml
glProgramParameteriARB http://www.opengl.org/registry/specs/ARB/geometry_shader4.txt
+glProgramParameteriEXT http://www.opengl.org/registry/specs/EXT/geometry_shader4.txt
+glProgramParameters4dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glProgramParameters4fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glProgramStringARB http://www.opengl.org/registry/specs/ARB/fragment_program.txt
glProgramStringARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glProgramUniform1d http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
@@ -1052,110 +1766,166 @@ glProgramUniform1dv http://www.opengl.org/registry/specs/ARB/separate_shader_obj
glProgramUniform1dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform1f http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1f http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1fEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1i http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1i http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform1i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform1iEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1iv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1iv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1ui http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1ui http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform1ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform1uiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform1uiv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform1uiv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform1uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2d http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2dEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform2dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform2f http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2f http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2fEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2i http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2i http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform2i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform2iEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2iv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2iv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2ui http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2ui http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform2ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform2uiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform2uiv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform2uiv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform2uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3d http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3dEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform3dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform3f http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3f http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3fEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3i http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3i http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform3i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform3iEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3iv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3iv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3ui http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3ui http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform3ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform3uiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform3uiv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform3uiv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform3uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4d http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4dEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform4dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniform4f http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4f http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4fEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4i http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4i http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform4i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform4iEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4iv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4iv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4ivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4ui http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4ui http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform4ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glProgramUniform4uiEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniform4uiv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniform4uiv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniform4uivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix2fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2x3dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x3dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2x3fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x3fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix2x3fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix2x4dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x4dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix2x4fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix2x4fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix2x4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix3fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3x2dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x2dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3x2fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x2fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix3x2fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix3x4dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x4dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix3x4fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix3x4fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix3x4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix4fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4x2dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x2dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4x2fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x2fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix4x2fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glProgramUniformMatrix4x3dv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x3dvEXT http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glProgramUniformMatrix4x3fv http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glProgramUniformMatrix4x3fv http://www.opengl.org/sdk/docs/man4/xhtml/glProgramUniform.xml
+glProgramUniformMatrix4x3fvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glProgramUniformui64NV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glProgramUniformui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glProgramVertexLimitNV http://www.opengl.org/registry/specs/NV/geometry_program4.txt
glProvokingVertex http://www.opengl.org/registry/specs/ARB/provoking_vertex.txt
glProvokingVertex http://www.opengl.org/sdk/docs/man3/xhtml/glProvokingVertex.xml
glProvokingVertex http://www.opengl.org/sdk/docs/man4/xhtml/glProvokingVertex.xml
+glProvokingVertexEXT http://www.opengl.org/registry/specs/EXT/provoking_vertex.txt
glPushAttrib http://www.opengl.org/sdk/docs/man/xhtml/glPushAttrib.xml
glPushClientAttrib http://www.opengl.org/sdk/docs/man/xhtml/glPushClientAttrib.xml
+glPushClientAttribDefaultEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glPushMatrix http://www.opengl.org/sdk/docs/man/xhtml/glPushMatrix.xml
glPushName http://www.opengl.org/sdk/docs/man/xhtml/glPushName.xml
glQueryCounter http://www.opengl.org/registry/specs/ARB/timer_query.txt
glQueryCounter http://www.opengl.org/sdk/docs/man3/xhtml/glQueryCounter.xml
glQueryCounter http://www.opengl.org/sdk/docs/man4/xhtml/glQueryCounter.xml
+glQueryMatrixxOES http://www.opengl.org/registry/specs/OES/OES_query_matrix.txt
+glQueryMaxSwapBarriersSGIX http://www.opengl.org/registry/specs/SGIX/swap_barrier.txt
glRasterPos2d http://www.opengl.org/sdk/docs/man/xhtml/glRasterPos.xml
glRasterPos2dv http://www.opengl.org/sdk/docs/man/xhtml/glRasterPos.xml
glRasterPos2f http://www.opengl.org/sdk/docs/man/xhtml/glRasterPos.xml
@@ -1183,6 +1953,7 @@ glRasterPos4sv http://www.opengl.org/sdk/docs/man/xhtml/glRasterPos.xml
glReadBuffer http://www.opengl.org/sdk/docs/man/xhtml/glReadBuffer.xml
glReadBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glReadBuffer.xml
glReadBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glReadBuffer.xml
+glReadInstrumentsSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
glReadPixels http://www.opengl.org/sdk/docs/man/xhtml/glReadPixels.xml
glReadPixels http://www.opengl.org/sdk/docs/man3/xhtml/glReadPixels.xml
glReadPixels http://www.opengl.org/sdk/docs/man4/xhtml/glReadPixels.xml
@@ -1195,6 +1966,9 @@ glRecti http://www.opengl.org/sdk/docs/man/xhtml/glRect.xml
glRectiv http://www.opengl.org/sdk/docs/man/xhtml/glRect.xml
glRects http://www.opengl.org/sdk/docs/man/xhtml/glRect.xml
glRectsv http://www.opengl.org/sdk/docs/man/xhtml/glRect.xml
+glRectxOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glRectxvOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glReferencePlaneSGIX http://www.opengl.org/registry/specs/SGIX/reference_plane.txt
glReleaseShaderCompiler http://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glReleaseShaderCompiler http://www.opengl.org/sdk/docs/man4/xhtml/glReleaseShaderCompiler.xml
glRenderMode http://www.opengl.org/sdk/docs/man/xhtml/glRenderMode.xml
@@ -1205,19 +1979,40 @@ glRenderbufferStorageEXT http://www.opengl.org/registry/specs/EXT/framebuffer_ob
glRenderbufferStorageMultisample http://www.opengl.org/registry/specs/ARB/framebuffer_object.txt
glRenderbufferStorageMultisample http://www.opengl.org/sdk/docs/man3/xhtml/glRenderbufferStorageMultisample.xml
glRenderbufferStorageMultisample http://www.opengl.org/sdk/docs/man4/xhtml/glRenderbufferStorageMultisample.xml
+glRenderbufferStorageMultisampleCoverageNV http://www.opengl.org/registry/specs/NV/framebuffer_multisample_coverage.txt
+glRenderbufferStorageMultisampleEXT http://www.opengl.org/registry/specs/EXT/framebuffer_multisample.txt
+glReplacementCodePointerSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeubSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeubvSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeuiSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeuivSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeusSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glReplacementCodeusvSUN http://www.opengl.org/registry/specs/SUN/triangle_list.txt
+glRequestResidentProgramsNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glResetHistogram http://www.opengl.org/sdk/docs/man/xhtml/glResetHistogram.xml
+glResetHistogramEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
glResetMinmax http://www.opengl.org/sdk/docs/man/xhtml/glResetMinmax.xml
+glResetMinmaxEXT http://www.opengl.org/registry/specs/EXT/histogram.txt
+glResizeBuffersMESA http://www.opengl.org/registry/specs/MESA/resize_buffers.txt
glResumeTransformFeedback http://www.opengl.org/registry/specs/ARB/transform_feedback2.txt
glResumeTransformFeedback http://www.opengl.org/sdk/docs/man4/xhtml/glResumeTransformFeedback.xml
+glResumeTransformFeedbackNV http://www.opengl.org/registry/specs/NV/transform_feedback2.txt
glRotated http://www.opengl.org/sdk/docs/man/xhtml/glRotate.xml
glRotatef http://www.opengl.org/sdk/docs/man/xhtml/glRotate.xml
+glRotatexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glSampleCoverage http://www.opengl.org/sdk/docs/man/xhtml/glSampleCoverage.xml
glSampleCoverage http://www.opengl.org/sdk/docs/man3/xhtml/glSampleCoverage.xml
glSampleCoverage http://www.opengl.org/sdk/docs/man4/xhtml/glSampleCoverage.xml
glSampleCoverageARB http://www.opengl.org/registry/specs/ARB/multisample.txt
+glSampleCoverageOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
+glSampleMaskEXT http://www.opengl.org/registry/specs/EXT/wgl_multisample.txt
+glSampleMaskIndexedNV http://www.opengl.org/registry/specs/NV/explicit_multisample.txt
+glSampleMaskSGIS http://www.opengl.org/registry/specs/SGIS/multisample.txt
glSampleMaski http://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glSampleMaski http://www.opengl.org/sdk/docs/man3/xhtml/glSampleMaski.xml
glSampleMaski http://www.opengl.org/sdk/docs/man4/xhtml/glSampleMaski.xml
+glSamplePatternEXT http://www.opengl.org/registry/specs/EXT/wgl_multisample.txt
+glSamplePatternSGIS http://www.opengl.org/registry/specs/SGIS/multisample.txt
glSamplerParameterIiv http://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterIuiv http://www.opengl.org/registry/specs/ARB/sampler_objects.txt
glSamplerParameterf http://www.opengl.org/registry/specs/ARB/sampler_objects.txt
@@ -1234,6 +2029,7 @@ glSamplerParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glSamplerParamete
glSamplerParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glSamplerParameter.xml
glScaled http://www.opengl.org/sdk/docs/man/xhtml/glScale.xml
glScalef http://www.opengl.org/sdk/docs/man/xhtml/glScale.xml
+glScalexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glScissor http://www.opengl.org/sdk/docs/man/xhtml/glScissor.xml
glScissor http://www.opengl.org/sdk/docs/man3/xhtml/glScissor.xml
glScissor http://www.opengl.org/sdk/docs/man4/xhtml/glScissor.xml
@@ -1249,6 +2045,8 @@ glSecondaryColor3d http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3dv http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3f http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3fv http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
+glSecondaryColor3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glSecondaryColor3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glSecondaryColor3i http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3iv http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3s http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
@@ -1259,11 +2057,18 @@ glSecondaryColor3ui http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xm
glSecondaryColor3uiv http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3us http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
glSecondaryColor3usv http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColor.xml
+glSecondaryColorFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glSecondaryColorP3ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glSecondaryColorP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glSecondaryColorPointer http://www.opengl.org/sdk/docs/man/xhtml/glSecondaryColorPointer.xml
+glSecondaryColorPointerEXT http://www.opengl.org/registry/specs/EXT/secondary_color.txt
glSelectBuffer http://www.opengl.org/sdk/docs/man/xhtml/glSelectBuffer.xml
+glSelectPerfMonitorCountersAMD http://www.opengl.org/registry/specs/AMD/performance_monitor.txt
glSeparableFilter2D http://www.opengl.org/sdk/docs/man/xhtml/glSeparableFilter2D.xml
+glSeparableFilter2DEXT http://www.opengl.org/registry/specs/EXT/convolution.txt
+glSetFenceAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glSetFenceNV http://www.opengl.org/registry/specs/NV/fence.txt
+glSetMultisamplefvAMD http://www.opengl.org/registry/specs/AMD/sample_positions.txt
glShadeModel http://www.opengl.org/sdk/docs/man/xhtml/glShadeModel.xml
glShaderBinary http://www.opengl.org/registry/specs/ARB/ES2_compatibility.txt
glShaderBinary http://www.opengl.org/sdk/docs/man4/xhtml/glShaderBinary.xml
@@ -1271,6 +2076,15 @@ glShaderSource http://www.opengl.org/sdk/docs/man/xhtml/glShaderSource.xml
glShaderSource http://www.opengl.org/sdk/docs/man3/xhtml/glShaderSource.xml
glShaderSource http://www.opengl.org/sdk/docs/man4/xhtml/glShaderSource.xml
glShaderSourceARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
+glSharpenTexFuncSGIS http://www.opengl.org/registry/specs/SGIS/sharpen_texture.txt
+glSpriteParameterfSGIX http://www.opengl.org/registry/specs/SGIX/sprite.txt
+glSpriteParameterfvSGIX http://www.opengl.org/registry/specs/SGIX/sprite.txt
+glSpriteParameteriSGIX http://www.opengl.org/registry/specs/SGIX/sprite.txt
+glSpriteParameterivSGIX http://www.opengl.org/registry/specs/SGIX/sprite.txt
+glStartInstrumentsSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
+glStencilClearTagEXT http://www.opengl.org/registry/specs/EXT/stencil_clear_tag.txt
+glStencilFillPathInstancedNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glStencilFillPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glStencilFunc http://www.opengl.org/sdk/docs/man/xhtml/glStencilFunc.xml
glStencilFunc http://www.opengl.org/sdk/docs/man3/xhtml/glStencilFunc.xml
glStencilFunc http://www.opengl.org/sdk/docs/man4/xhtml/glStencilFunc.xml
@@ -1289,13 +2103,28 @@ glStencilOp http://www.opengl.org/sdk/docs/man4/xhtml/glStencilOp.xml
glStencilOpSeparate http://www.opengl.org/sdk/docs/man/xhtml/glStencilOpSeparate.xml
glStencilOpSeparate http://www.opengl.org/sdk/docs/man3/xhtml/glStencilOpSeparate.xml
glStencilOpSeparate http://www.opengl.org/sdk/docs/man4/xhtml/glStencilOpSeparate.xml
+glStencilStrokePathInstancedNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glStencilStrokePathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
+glStopInstrumentsSGIX http://www.opengl.org/registry/specs/SGIX/instruments.txt
+glStringMarkerGREMEDY http://www.opengl.org/registry/specs/GREMEDY/string_marker.txt
+glTagSampleBufferSGIX http://www.opengl.org/registry/specs/SGIX/tag_sample_buffer.txt
+glTangentPointerEXT http://www.opengl.org/registry/specs/EXT/coordinate_frame.txt
+glTbufferMask3DFX http://www.opengl.org/registry/specs/3DFX/tbuffer.txt
+glTessellationFactorAMD http://www.opengl.org/registry/specs/AMD/vertex_shader_tessellator.txt
+glTessellationModeAMD http://www.opengl.org/registry/specs/AMD/vertex_shader_tessellator.txt
+glTestFenceAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
+glTestFenceNV http://www.opengl.org/registry/specs/NV/fence.txt
+glTestObjectAPPLE http://www.opengl.org/registry/specs/APPLE/fence.txt
glTexBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glTexBuffer.xml
glTexBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glTexBuffer.xml
glTexBufferARB http://www.opengl.org/registry/specs/ARB/texture_buffer_object.txt
+glTexBufferEXT http://www.opengl.org/registry/specs/EXT/texture_buffer_object.txt
glTexCoord1d http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord1dv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord1f http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord1fv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord1hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glTexCoord1hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord1i http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord1iv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord1s http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
@@ -1303,7 +2132,13 @@ glTexCoord1sv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord2d http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord2dv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord2f http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord2fColor4ubVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glTexCoord2fColor4ubVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glTexCoord2fVertex3fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glTexCoord2fVertex3fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord2fv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord2hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glTexCoord2hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord2i http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord2iv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord2s http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
@@ -1312,6 +2147,8 @@ glTexCoord3d http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord3dv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord3f http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord3fv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glTexCoord3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord3i http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord3iv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord3s http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
@@ -1319,11 +2156,16 @@ glTexCoord3sv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4d http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4dv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4f http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord4fVertex4fSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
+glTexCoord4fVertex4fvSUN http://www.opengl.org/registry/specs/SUN/vertex.txt
glTexCoord4fv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoord4hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glTexCoord4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glTexCoord4i http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4iv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4s http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
glTexCoord4sv http://www.opengl.org/sdk/docs/man/xhtml/glTexCoord.xml
+glTexCoordFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glTexCoordP1ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP1uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP2ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
@@ -1333,10 +2175,13 @@ glTexCoordP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_
glTexCoordP4ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordP4uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glTexCoordPointer http://www.opengl.org/sdk/docs/man/xhtml/glTexCoordPointer.xml
+glTexCoordPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glTexCoordPointervINTEL http://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
glTexEnvf http://www.opengl.org/sdk/docs/man/xhtml/glTexEnv.xml
glTexEnvfv http://www.opengl.org/sdk/docs/man/xhtml/glTexEnv.xml
glTexEnvi http://www.opengl.org/sdk/docs/man/xhtml/glTexEnv.xml
glTexEnviv http://www.opengl.org/sdk/docs/man/xhtml/glTexEnv.xml
+glTexFilterFuncSGIS http://www.opengl.org/registry/specs/SGIS/texture_filter4.txt
glTexGend http://www.opengl.org/sdk/docs/man/xhtml/glTexGen.xml
glTexGendv http://www.opengl.org/sdk/docs/man/xhtml/glTexGen.xml
glTexGenf http://www.opengl.org/sdk/docs/man/xhtml/glTexGen.xml
@@ -1352,16 +2197,22 @@ glTexImage2D http://www.opengl.org/sdk/docs/man4/xhtml/glTexImage2D.xml
glTexImage2DMultisample http://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glTexImage2DMultisample http://www.opengl.org/sdk/docs/man3/xhtml/glTexImage2DMultisample.xml
glTexImage2DMultisample http://www.opengl.org/sdk/docs/man4/xhtml/glTexImage2DMultisample.xml
+glTexImage2DMultisampleCoverageNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
glTexImage3D http://www.opengl.org/sdk/docs/man/xhtml/glTexImage3D.xml
glTexImage3D http://www.opengl.org/sdk/docs/man3/xhtml/glTexImage3D.xml
glTexImage3D http://www.opengl.org/sdk/docs/man4/xhtml/glTexImage3D.xml
+glTexImage3DEXT http://www.opengl.org/registry/specs/EXT/texture3D.txt
glTexImage3DMultisample http://www.opengl.org/registry/specs/ARB/texture_multisample.txt
glTexImage3DMultisample http://www.opengl.org/sdk/docs/man3/xhtml/glTexImage3DMultisample.xml
glTexImage3DMultisample http://www.opengl.org/sdk/docs/man4/xhtml/glTexImage3DMultisample.xml
+glTexImage3DMultisampleCoverageNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
+glTexImage4DSGIS http://www.opengl.org/registry/specs/SGIS/texture4D.txt
glTexParameterIiv http://www.opengl.org/sdk/docs/man3/xhtml/glTexParameter.xml
glTexParameterIiv http://www.opengl.org/sdk/docs/man4/xhtml/glTexParameter.xml
+glTexParameterIivEXT http://www.opengl.org/registry/specs/EXT/texture_integer.txt
glTexParameterIuiv http://www.opengl.org/sdk/docs/man3/xhtml/glTexParameter.xml
glTexParameterIuiv http://www.opengl.org/sdk/docs/man4/xhtml/glTexParameter.xml
+glTexParameterIuivEXT http://www.opengl.org/registry/specs/EXT/texture_integer.txt
glTexParameterf http://www.opengl.org/sdk/docs/man/xhtml/glTexParameter.xml
glTexParameterf http://www.opengl.org/sdk/docs/man3/xhtml/glTexParameter.xml
glTexParameterf http://www.opengl.org/sdk/docs/man4/xhtml/glTexParameter.xml
@@ -1374,19 +2225,61 @@ glTexParameteri http://www.opengl.org/sdk/docs/man4/xhtml/glTexParameter.xml
glTexParameteriv http://www.opengl.org/sdk/docs/man/xhtml/glTexParameter.xml
glTexParameteriv http://www.opengl.org/sdk/docs/man3/xhtml/glTexParameter.xml
glTexParameteriv http://www.opengl.org/sdk/docs/man4/xhtml/glTexParameter.xml
+glTexRenderbufferNV http://www.opengl.org/registry/specs/NV/explicit_multisample.txt
+glTexStorage1D http://www.opengl.org/registry/specs/ARB/texture_storage.txt
+glTexStorage2D http://www.opengl.org/registry/specs/ARB/texture_storage.txt
+glTexStorage3D http://www.opengl.org/registry/specs/ARB/texture_storage.txt
glTexSubImage1D http://www.opengl.org/sdk/docs/man/xhtml/glTexSubImage1D.xml
glTexSubImage1D http://www.opengl.org/sdk/docs/man3/xhtml/glTexSubImage1D.xml
glTexSubImage1D http://www.opengl.org/sdk/docs/man4/xhtml/glTexSubImage1D.xml
+glTexSubImage1DEXT http://www.opengl.org/registry/specs/EXT/subtexture.txt
glTexSubImage2D http://www.opengl.org/sdk/docs/man/xhtml/glTexSubImage2D.xml
glTexSubImage2D http://www.opengl.org/sdk/docs/man3/xhtml/glTexSubImage2D.xml
glTexSubImage2D http://www.opengl.org/sdk/docs/man4/xhtml/glTexSubImage2D.xml
+glTexSubImage2DEXT http://www.opengl.org/registry/specs/EXT/subtexture.txt
glTexSubImage3D http://www.opengl.org/sdk/docs/man/xhtml/glTexSubImage3D.xml
glTexSubImage3D http://www.opengl.org/sdk/docs/man3/xhtml/glTexSubImage3D.xml
glTexSubImage3D http://www.opengl.org/sdk/docs/man4/xhtml/glTexSubImage3D.xml
+glTexSubImage3DEXT http://www.opengl.org/registry/specs/EXT/subtexture.txt
+glTexSubImage4DSGIS http://www.opengl.org/registry/specs/SGIS/texture4D.txt
+glTextureBarrierNV http://www.opengl.org/registry/specs/NV/texture_barrier.txt
+glTextureBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureColorMaskSGIS http://www.opengl.org/registry/specs/SGIS/texture_color_mask.txt
+glTextureFogSGIX http://www.opengl.org/registry/specs/SGIX/fog_texture.txt
+glTextureImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureImage2DMultisampleCoverageNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
+glTextureImage2DMultisampleNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
+glTextureImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureImage3DMultisampleCoverageNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
+glTextureImage3DMultisampleNV http://www.opengl.org/registry/specs/NV/texture_multisample.txt
+glTextureLightEXT http://www.opengl.org/registry/specs/EXT/light_texture.txt
+glTextureMaterialEXT http://www.opengl.org/registry/specs/EXT/light_texture.txt
+glTextureNormalEXT http://www.opengl.org/registry/specs/EXT/texture_perturb_normal.txt
+glTextureParameterIivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureParameterIuivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureParameterfEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureParameterfvEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureParameteriEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureParameterivEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureRangeAPPLE http://www.opengl.org/registry/specs/APPLE/texture_range.txt
+glTextureRenderbufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureStorage1DEXT http://www.opengl.org/registry/specs/ARB/texture_storage.txt
+glTextureStorage2DEXT http://www.opengl.org/registry/specs/ARB/texture_storage.txt
+glTextureStorage3DEXT http://www.opengl.org/registry/specs/ARB/texture_storage.txt
+glTextureSubImage1DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureSubImage2DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTextureSubImage3DEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glTrackMatrixNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glTransformFeedbackAttribsNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
glTransformFeedbackVaryings http://www.opengl.org/sdk/docs/man3/xhtml/glTransformFeedbackVaryings.xml
glTransformFeedbackVaryings http://www.opengl.org/sdk/docs/man4/xhtml/glTransformFeedbackVaryings.xml
+glTransformFeedbackVaryingsEXT http://www.opengl.org/registry/specs/EXT/transform_feedback.txt
+glTransformFeedbackVaryingsNV http://www.opengl.org/registry/specs/NV/transform_feedback.txt
+glTransformPathNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glTranslated http://www.opengl.org/sdk/docs/man/xhtml/glTranslate.xml
glTranslatef http://www.opengl.org/sdk/docs/man/xhtml/glTranslate.xml
+glTranslatexOES http://www.opengl.org/registry/specs/OES/OES_fixed_point.txt
glUniform1d http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform1dv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform1f http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
@@ -1400,6 +2293,8 @@ glUniform1fvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1i http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform1i http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform1i http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform1i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform1i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform1iARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1iv http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform1iv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
@@ -1407,8 +2302,12 @@ glUniform1iv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
glUniform1ivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform1ui http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform1ui http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform1ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform1ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform1uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform1uiv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform1uiv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform1uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform2d http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform2dv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform2f http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
@@ -1422,6 +2321,8 @@ glUniform2fvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2i http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform2i http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform2i http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform2i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform2i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform2iARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2iv http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform2iv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
@@ -1429,8 +2330,12 @@ glUniform2iv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
glUniform2ivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform2ui http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform2ui http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform2ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform2ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform2uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform2uiv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform2uiv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform2uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform3d http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform3dv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform3f http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
@@ -1444,6 +2349,8 @@ glUniform3fvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3i http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform3i http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform3i http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform3i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform3i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform3iARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3iv http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform3iv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
@@ -1451,8 +2358,12 @@ glUniform3iv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
glUniform3ivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform3ui http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform3ui http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform3ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform3ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform3uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform3uiv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform3uiv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform3uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform4d http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform4dv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniform4f http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
@@ -1466,6 +2377,8 @@ glUniform4fvARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4i http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform4i http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform4i http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform4i64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform4i64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
glUniform4iARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4iv http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniform4iv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
@@ -1473,11 +2386,16 @@ glUniform4iv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
glUniform4ivARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUniform4ui http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform4ui http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform4ui64NV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform4ui64vNV http://www.opengl.org/registry/specs/NV/gpu_shader5.txt
+glUniform4uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniform4uiv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniform4uiv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
+glUniform4uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
glUniformBlockBinding http://www.opengl.org/registry/specs/ARB/uniform_buffer_object.txt
glUniformBlockBinding http://www.opengl.org/sdk/docs/man3/xhtml/glUniformBlockBinding.xml
glUniformBlockBinding http://www.opengl.org/sdk/docs/man4/xhtml/glUniformBlockBinding.xml
+glUniformBufferEXT http://www.opengl.org/registry/specs/EXT/bindable_uniform.txt
glUniformMatrix2dv http://www.opengl.org/registry/specs/ARB/gpu_shader_fp64.txt
glUniformMatrix2fv http://www.opengl.org/sdk/docs/man/xhtml/glUniform.xml
glUniformMatrix2fv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
@@ -1519,26 +2437,35 @@ glUniformMatrix4x3fv http://www.opengl.org/sdk/docs/man3/xhtml/glUniform.xml
glUniformMatrix4x3fv http://www.opengl.org/sdk/docs/man4/xhtml/glUniform.xml
glUniformSubroutinesuiv http://www.opengl.org/registry/specs/ARB/shader_subroutine.txt
glUniformSubroutinesuiv http://www.opengl.org/sdk/docs/man4/xhtml/glUniformSubroutines.xml
+glUniformui64NV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
+glUniformui64vNV http://www.opengl.org/registry/specs/NV/shader_buffer_load.txt
glUnmapBuffer http://www.opengl.org/sdk/docs/man/xhtml/glMapBuffer.xml
glUnmapBuffer http://www.opengl.org/sdk/docs/man3/xhtml/glMapBuffer.xml
glUnmapBuffer http://www.opengl.org/sdk/docs/man4/xhtml/glMapBuffer.xml
glUnmapBufferARB http://www.opengl.org/registry/specs/ARB/vertex_buffer_object.txt
+glUnmapNamedBufferEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glUnmapObjectBufferATI http://www.opengl.org/registry/specs/ATI/map_object_buffer.txt
+glUpdateObjectBufferATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glUseProgram http://www.opengl.org/sdk/docs/man/xhtml/glUseProgram.xml
glUseProgram http://www.opengl.org/sdk/docs/man3/xhtml/glUseProgram.xml
glUseProgram http://www.opengl.org/sdk/docs/man4/xhtml/glUseProgram.xml
glUseProgramObjectARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glUseProgramStages http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glUseProgramStages http://www.opengl.org/sdk/docs/man4/xhtml/glUseProgramStages.xml
+glUseShaderProgramEXT http://www.opengl.org/registry/specs/EXT/separate_shader_objects.txt
glValidateProgram http://www.opengl.org/sdk/docs/man/xhtml/glValidateProgram.xml
glValidateProgram http://www.opengl.org/sdk/docs/man3/xhtml/glValidateProgram.xml
glValidateProgram http://www.opengl.org/sdk/docs/man4/xhtml/glValidateProgram.xml
glValidateProgramARB http://www.opengl.org/registry/specs/ARB/shader_objects.txt
glValidateProgramPipeline http://www.opengl.org/registry/specs/ARB/separate_shader_objects.txt
glValidateProgramPipeline http://www.opengl.org/sdk/docs/man4/xhtml/glValidateProgramPipeline.xml
+glVariantArrayObjectATI http://www.opengl.org/registry/specs/ATI/vertex_array_object.txt
glVertex2d http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex2dv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex2f http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex2fv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
+glVertex2hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertex2hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertex2i http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex2iv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex2s http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
@@ -1547,6 +2474,8 @@ glVertex3d http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex3dv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex3f http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex3fv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
+glVertex3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertex3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertex3i http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex3iv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex3s http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
@@ -1555,101 +2484,142 @@ glVertex4d http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4dv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4f http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4fv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
+glVertex4hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertex4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertex4i http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4iv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4s http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
glVertex4sv http://www.opengl.org/sdk/docs/man/xhtml/glVertex.xml
+glVertexArrayColorOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayEdgeFlagOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayFogCoordOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayIndexOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayMultiTexCoordOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayNormalOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayParameteriAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
+glVertexArrayRangeAPPLE http://www.opengl.org/registry/specs/APPLE/vertex_array_range.txt
+glVertexArrayRangeNV http://www.opengl.org/registry/specs/NV/vertex_array_range.txt
+glVertexArraySecondaryColorOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayTexCoordOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayVertexAttribIOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexArrayVertexAttribLOffsetEXT http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
+glVertexArrayVertexAttribLOffsetEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glVertexArrayVertexAttribOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
+glVertexArrayVertexOffsetEXT http://www.opengl.org/registry/specs/EXT/direct_state_access.txt
glVertexAttrib1d http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1d http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1dARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1dNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1dv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1dv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1dvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1dvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1f http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1f http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1f http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1fARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1fNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1fv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1fv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1fv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1fvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttrib1hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttrib1hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib1s http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1s http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1s http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1sARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1sARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1sNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib1sv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib1sv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib1sv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib1svARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib1svARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib1svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2d http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2d http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2dARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2dNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2dv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2dv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2dvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2dvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2f http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2f http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2f http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2fARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2fNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2fv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2fv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2fv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2fvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttrib2hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttrib2hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib2s http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2s http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2s http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2sARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2sARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2sNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib2sv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib2sv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib2sv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib2svARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib2svARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib2svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3d http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3d http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3dARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3dNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3dv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3dv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3dvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3dvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3f http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3f http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3f http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3fARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3fNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3fv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3fv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3fv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3fvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttrib3hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttrib3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib3s http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3s http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3s http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3sARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3sARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3sNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib3sv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib3sv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib3sv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib3svARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib3svARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib3svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4Nbv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4Nbv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4Nbv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
@@ -1695,21 +2665,27 @@ glVertexAttrib4d http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4dARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4dARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4dNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4dv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4dv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4dvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4dvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4f http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4f http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4f http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4fARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4fARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4fNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4fv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4fv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4fv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4fvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4fvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttrib4hNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttrib4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
glVertexAttrib4iv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4iv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4iv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
@@ -1720,16 +2696,20 @@ glVertexAttrib4s http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4s http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4sARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4sARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4sNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4sv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4sv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4sv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4svARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4svARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttrib4ubNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4ubv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4ubv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4ubv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4ubvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4ubvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttrib4ubvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexAttrib4uiv http://www.opengl.org/sdk/docs/man/xhtml/glVertexAttrib.xml
glVertexAttrib4uiv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4uiv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
@@ -1740,69 +2720,140 @@ glVertexAttrib4usv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttrib4usv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
glVertexAttrib4usvARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttrib4usvARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttribArrayObjectATI http://www.opengl.org/registry/specs/ATI/vertex_attrib_array_object.txt
glVertexAttribDivisor http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttribDivisor.xml
glVertexAttribDivisor http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttribDivisor.xml
glVertexAttribDivisorARB http://www.opengl.org/registry/specs/ARB/instanced_arrays.txt
+glVertexAttribFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexAttribI1i http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI1i http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI1iEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI1iEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1iv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI1iv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI1ivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI1ivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1ui http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI1ui http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI1uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI1uiEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI1uiv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI1uiv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI1uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI1uivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2i http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI2i http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI2iEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI2iEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2iv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI2iv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI2ivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI2ivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2ui http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI2ui http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI2uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI2uiEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI2uiv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI2uiv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI2uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI2uivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3i http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI3i http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI3iEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI3iEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3iv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI3iv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI3ivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI3ivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3ui http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI3ui http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI3uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI3uiEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI3uiv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI3uiv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI3uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI3uivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4bv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4bv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4bvEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4bvEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4i http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4i http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4iEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4iEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4iv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4iv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4ivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4ivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4sv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4sv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4svEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4svEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4ubv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4ubv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4ubvEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4ubvEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4ui http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4ui http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4uiEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4uiEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4uiv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4uiv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4uivEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4uivEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribI4usv http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribI4usv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribI4usvEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribI4usvEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
+glVertexAttribIFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexAttribIPointer http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttribPointer.xml
glVertexAttribIPointer http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttribPointer.xml
+glVertexAttribIPointerEXT http://www.opengl.org/registry/specs/EXT/gpu_shader4.txt
+glVertexAttribIPointerEXT http://www.opengl.org/registry/specs/NV/vertex_program4.txt
glVertexAttribL1d http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL1d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL1dEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL1dv http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL1dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL1dvEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glVertexAttribL1i64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL1i64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL1ui64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL1ui64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL2d http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL2d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL2dEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL2dv http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL2dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL2dvEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glVertexAttribL2i64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL2i64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL2ui64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL2ui64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL3d http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL3d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL3dEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL3dv http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL3dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL3dvEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glVertexAttribL3i64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL3i64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL3ui64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL3ui64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribL4d http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL4d http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL4dEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribL4dv http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribL4dv http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
+glVertexAttribL4dvEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
+glVertexAttribL4i64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL4i64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL4ui64NV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribL4ui64vNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
+glVertexAttribLFormatNV http://www.opengl.org/registry/specs/NV/vertex_attrib_integer_64bit.txt
glVertexAttribLPointer http://www.opengl.org/registry/specs/ARB/vertex_attrib_64bit.txt
glVertexAttribLPointer http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttribPointer.xml
+glVertexAttribLPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_attrib_64bit.txt
glVertexAttribP1ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexAttribP1ui http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttrib.xml
glVertexAttribP1ui http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttrib.xml
@@ -1824,7 +2875,26 @@ glVertexAttribPointer http://www.opengl.org/sdk/docs/man3/xhtml/glVertexAttribPo
glVertexAttribPointer http://www.opengl.org/sdk/docs/man4/xhtml/glVertexAttribPointer.xml
glVertexAttribPointerARB http://www.opengl.org/registry/specs/ARB/vertex_program.txt
glVertexAttribPointerARB http://www.opengl.org/registry/specs/ARB/vertex_shader.txt
+glVertexAttribPointerNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs1dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs1fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs1hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttribs1svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs2dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs2fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs2hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttribs2svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs3dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs3fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs3hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttribs3svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs4dvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs4fvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs4hvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexAttribs4svNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
+glVertexAttribs4ubvNV http://www.opengl.org/registry/specs/NV/vertex_program.txt
glVertexBlendARB http://www.opengl.org/registry/specs/ARB/vertex_blend.txt
+glVertexFormatNV http://www.opengl.org/registry/specs/NV/vertex_buffer_unified_memory.txt
glVertexP2ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP2uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP3ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
@@ -1832,6 +2902,11 @@ glVertexP3uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_re
glVertexP4ui http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexP4uiv http://www.opengl.org/registry/specs/ARB/vertex_type_2_10_10_10_rev.txt
glVertexPointer http://www.opengl.org/sdk/docs/man/xhtml/glVertexPointer.xml
+glVertexPointerEXT http://www.opengl.org/registry/specs/EXT/vertex_array.txt
+glVertexPointervINTEL http://www.opengl.org/registry/specs/INTEL/parallel_arrays.txt
+glVertexWeighthNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVertexWeighthvNV http://www.opengl.org/registry/specs/NV/half_float.txt
+glVideoCaptureNV http://www.opengl.org/registry/specs/NV/video_capture.txt
glViewport http://www.opengl.org/sdk/docs/man/xhtml/glViewport.xml
glViewport http://www.opengl.org/sdk/docs/man3/xhtml/glViewport.xml
glViewport http://www.opengl.org/sdk/docs/man4/xhtml/glViewport.xml
@@ -1844,82 +2919,173 @@ glViewportIndexedfv http://www.opengl.org/sdk/docs/man4/xhtml/glViewportIndexed.
glWaitSync http://www.opengl.org/registry/specs/ARB/sync.txt
glWaitSync http://www.opengl.org/sdk/docs/man3/xhtml/glWaitSync.xml
glWaitSync http://www.opengl.org/sdk/docs/man4/xhtml/glWaitSync.xml
+glWeightPathsNV http://www.opengl.org/registry/specs/NV/path_rendering.txt
glWeightPointerARB http://www.opengl.org/registry/specs/ARB/vertex_blend.txt
glWindowPos2d http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2dARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2dMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2dv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2dvARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2dvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2f http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2fARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2fMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2fv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2fvARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2fvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2i http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2iARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2iMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2iv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2ivARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2ivMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2s http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2sARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2sMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos2sv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos2svARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos2svMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3d http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3dARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3dMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3dv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3dvARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3dvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3f http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3fARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3fMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3fv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3fvARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3fvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3i http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3iARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3iMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3iv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3ivARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3ivMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3s http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3sARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3sMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
glWindowPos3sv http://www.opengl.org/sdk/docs/man/xhtml/glWindowPos.xml
glWindowPos3svARB http://www.opengl.org/registry/specs/ARB/window_pos.txt
+glWindowPos3svMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4dMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4dvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4fMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4fvMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4iMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4ivMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4sMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glWindowPos4svMESA http://www.opengl.org/registry/specs/MESA/window_pos.txt
+glXAssociateDMPbufferSGIX http://www.opengl.org/registry/specs/SGIX/dmbuffer.txt
+glXBindChannelToWindowSGIX http://www.opengl.org/registry/specs/SGIX/video_resize.txt
+glXBindHyperpipeSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
+glXBindSwapBarrierNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
+glXBindVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glXBindVideoDeviceNV http://www.opengl.org/registry/specs/NV/present_video.txt
+glXBlitContextFramebufferAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
+glXChannelRectSGIX http://www.opengl.org/registry/specs/SGIX/video_resize.txt
+glXChannelRectSyncSGIX http://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXChooseFBConfig http://www.opengl.org/sdk/docs/man/xhtml/glXChooseFBConfig.xml
glXChooseVisual http://www.opengl.org/sdk/docs/man/xhtml/glXChooseVisual.xml
glXCopyContext http://www.opengl.org/sdk/docs/man/xhtml/glXCopyContext.xml
+glXCopySubBufferMESA http://www.opengl.org/registry/specs/MESA/copy_sub_buffer.txt
+glXCreateAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
+glXCreateAssociatedContextAttribsAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXCreateContext http://www.opengl.org/sdk/docs/man/xhtml/glXCreateContext.xml
glXCreateContextAttribsARB http://www.opengl.org/registry/specs/ARB/glx_create_context.txt
+glXCreateContextWithConfigSGIX http://www.opengl.org/registry/specs/SGIX/fbconfig.txt
+glXCreateGLXPbufferSGIX http://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXCreateGLXPixmap http://www.opengl.org/sdk/docs/man/xhtml/glXCreateGLXPixmap.xml
+glXCreateGLXPixmapMESA http://www.opengl.org/registry/specs/MESA/pixmap_colormap.txt
+glXCreateGLXPixmapWithConfigSGIX http://www.opengl.org/registry/specs/SGIX/fbconfig.txt
+glXCreateGLXVideoSourceSGIX http://www.opengl.org/registry/specs/SGIX/video_source.txt
glXCreateNewContext http://www.opengl.org/sdk/docs/man/xhtml/glXCreateNewContext.xml
glXCreatePbuffer http://www.opengl.org/sdk/docs/man/xhtml/glXCreatePbuffer.xml
glXCreatePixmap http://www.opengl.org/sdk/docs/man/xhtml/glXCreatePixmap.xml
glXCreateWindow http://www.opengl.org/sdk/docs/man/xhtml/glXCreateWindow.xml
+glXCushionSGI http://www.opengl.org/registry/specs/SGI/cushion.txt
+glXDeleteAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXDestroyContext http://www.opengl.org/sdk/docs/man/xhtml/glXDestroyContext.xml
+glXDestroyGLXPbufferSGIX http://www.opengl.org/registry/specs/SGIX/pbuffer.txt
glXDestroyGLXPixmap http://www.opengl.org/sdk/docs/man/xhtml/glXDestroyGLXPixmap.xml
+glXDestroyGLXVideoSourceSGIX http://www.opengl.org/registry/specs/SGIX/video_source.txt
+glXDestroyHyperpipeConfigSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
glXDestroyPbuffer http://www.opengl.org/sdk/docs/man/xhtml/glXDestroyPbuffer.xml
glXDestroyPixmap http://www.opengl.org/sdk/docs/man/xhtml/glXDestroyPixmap.xml
glXDestroyWindow http://www.opengl.org/sdk/docs/man/xhtml/glXDestroyWindow.xml
+glXEnumerateVideoCaptureDevicesNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glXFreeContextEXT http://www.opengl.org/registry/specs/EXT/import_context.txt
glXFreeContextEXT http://www.opengl.org/sdk/docs/man/xhtml/glXFreeContextEXT.xml
+glXGetAGPOffsetMESA http://www.opengl.org/registry/specs/MESA/agp_offset.txt
glXGetClientString http://www.opengl.org/sdk/docs/man/xhtml/glXGetClientString.xml
glXGetConfig http://www.opengl.org/sdk/docs/man/xhtml/glXGetConfig.xml
+glXGetContextGPUIDAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
+glXGetContextIDEXT http://www.opengl.org/registry/specs/EXT/import_context.txt
glXGetContextIDEXT http://www.opengl.org/sdk/docs/man/xhtml/glXGetContextIDEXT.xml
+glXGetCurrentAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXGetCurrentContext http://www.opengl.org/sdk/docs/man/xhtml/glXGetCurrentContext.xml
glXGetCurrentDisplay http://www.opengl.org/sdk/docs/man/xhtml/glXGetCurrentDisplay.xml
glXGetCurrentDrawable http://www.opengl.org/sdk/docs/man/xhtml/glXGetCurrentDrawable.xml
glXGetCurrentReadDrawable http://www.opengl.org/sdk/docs/man/xhtml/glXGetCurrentReadDrawable.xml
+glXGetCurrentReadDrawableSGI http://www.opengl.org/registry/specs/SGI/make_current_read.txt
glXGetFBConfigAttrib http://www.opengl.org/sdk/docs/man/xhtml/glXGetFBConfigAttrib.xml
+glXGetFBConfigAttribSGIX http://www.opengl.org/registry/specs/SGIX/fbconfig.txt
+glXGetFBConfigFromVisualSGIX http://www.opengl.org/registry/specs/SGIX/fbconfig.txt
glXGetFBConfigs http://www.opengl.org/sdk/docs/man/xhtml/glXGetFBConfigs.xml
+glXGetGPUIDsAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
+glXGetGPUInfoAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
+glXGetMscRateOML http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXGetProcAddress http://www.opengl.org/sdk/docs/man/xhtml/glXGetProcAddress.xml
glXGetSelectedEvent http://www.opengl.org/sdk/docs/man/xhtml/glXGetSelectedEvent.xml
+glXGetSelectedEventSGIX http://www.opengl.org/registry/specs/SGIX/pbuffer.txt
+glXGetSyncValuesOML http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
+glXGetTransparentIndexSUN http://www.opengl.org/registry/specs/SUN/get_transparent_index.txt
+glXGetVideoSyncSGI http://www.opengl.org/registry/specs/SGI/video_sync.txt
glXGetVisualFromFBConfig http://www.opengl.org/sdk/docs/man/xhtml/glXGetVisualFromFBConfig.xml
+glXHyperpipeAttribSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
+glXHyperpipeConfigSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
+glXImportContextEXT http://www.opengl.org/registry/specs/EXT/import_context.txt
glXImportContextEXT http://www.opengl.org/sdk/docs/man/xhtml/glXImportContextEXT.xml
glXIsDirect http://www.opengl.org/sdk/docs/man/xhtml/glXIsDirect.xml
+glXJoinSwapGroupNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
+glXLockVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glXMakeAssociatedContextCurrentAMD http://www.opengl.org/registry/specs/AMD/glx_gpu_association.txt
glXMakeContextCurrent http://www.opengl.org/sdk/docs/man/xhtml/glXMakeContextCurrent.xml
glXMakeCurrent http://www.opengl.org/sdk/docs/man/xhtml/glXMakeCurrent.xml
+glXMakeCurrentReadSGI http://www.opengl.org/registry/specs/SGI/make_current_read.txt
+glXQueryChannelDeltasSGIX http://www.opengl.org/registry/specs/SGIX/video_resize.txt
+glXQueryChannelRectSGIX http://www.opengl.org/registry/specs/SGIX/video_resize.txt
glXQueryContext http://www.opengl.org/sdk/docs/man/xhtml/glXQueryContext.xml
+glXQueryContextInfoEXT http://www.opengl.org/registry/specs/EXT/import_context.txt
glXQueryContextInfoEXT http://www.opengl.org/sdk/docs/man/xhtml/glXQueryContextInfoEXT.xml
glXQueryDrawable http://www.opengl.org/sdk/docs/man/xhtml/glXQueryDrawable.xml
glXQueryExtension http://www.opengl.org/sdk/docs/man/xhtml/glXQueryExtension.xml
glXQueryExtensionsString http://www.opengl.org/sdk/docs/man/xhtml/glXQueryExtensionsString.xml
+glXQueryFrameCountNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
+glXQueryGLXPbufferSGIX http://www.opengl.org/registry/specs/SGIX/pbuffer.txt
+glXQueryHyperpipeAttribSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
+glXQueryHyperpipeBestAttribSGIX http://www.opengl.org/registry/specs/SGIX/hyperpipe_group.txt
+glXQueryMaxSwapGroupsNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXQueryServerString http://www.opengl.org/sdk/docs/man/xhtml/glXQueryServerString.xml
+glXQuerySwapGroupNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXQueryVersion http://www.opengl.org/sdk/docs/man/xhtml/glXQueryVersion.xml
+glXQueryVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glXReleaseBuffersMESA http://www.opengl.org/registry/specs/MESA/release_buffers.txt
+glXReleaseVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+glXResetFrameCountNV http://www.opengl.org/registry/specs/NV/glx_swap_group.txt
glXSelectEvent http://www.opengl.org/sdk/docs/man/xhtml/glXSelectEvent.xml
+glXSelectEventSGIX http://www.opengl.org/registry/specs/SGIX/pbuffer.txt
+glXSet3DfxModeMESA http://www.opengl.org/registry/specs/MESA/set_3dfx_mode.txt
glXSwapBuffers http://www.opengl.org/sdk/docs/man/xhtml/glXSwapBuffers.xml
+glXSwapBuffersMscOML http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
+glXSwapIntervalEXT http://www.opengl.org/registry/specs/EXT/swap_control.txt
+glXSwapIntervalSGI http://www.opengl.org/registry/specs/SGI/swap_control.txt
glXUseXFont http://www.opengl.org/sdk/docs/man/xhtml/glXUseXFont.xml
+glXWaitForMscOML http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
+glXWaitForSbcOML http://www.opengl.org/registry/specs/OML/glx_sync_control.txt
glXWaitGL http://www.opengl.org/sdk/docs/man/xhtml/glXWaitGL.xml
+glXWaitVideoSyncSGI http://www.opengl.org/registry/specs/SGI/video_sync.txt
glXWaitX http://www.opengl.org/sdk/docs/man/xhtml/glXWaitX.xml
gluBeginCurve http://www.opengl.org/sdk/docs/man/xhtml/gluBeginCurve.xml
gluBeginPolygon http://www.opengl.org/sdk/docs/man/xhtml/gluBeginPolygon.xml
@@ -1978,41 +3144,127 @@ gluTessEndPolygon http://www.opengl.org/sdk/docs/man/xhtml/gluTessEndPolygon.xml
gluTessNormal http://www.opengl.org/sdk/docs/man/xhtml/gluTessNormal.xml
gluTessProperty http://www.opengl.org/sdk/docs/man/xhtml/gluTessProperty.xml
gluTessVertex http://www.opengl.org/sdk/docs/man/xhtml/gluTessVertex.xml
+gluTexFilterFuncSGI http://www.opengl.org/registry/specs/SGI/filter4_parameters.txt
gluUnProject http://www.opengl.org/sdk/docs/man/xhtml/gluUnProject.xml
gluUnProject4 http://www.opengl.org/sdk/docs/man/xhtml/gluUnProject4.xml
+sizeof http://www.opengl.org/registry/specs/IBM/multimode_draw_arrays.txt
+wglAssociateImageBufferEventsI3D http://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
+wglBeginFrameTrackingI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
+wglBindDisplayColorTableEXT http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
+wglBindSwapBarrierNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
+wglBindVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+wglBindVideoDeviceNV http://www.opengl.org/registry/specs/NV/present_video.txt
+wglBlitContextFramebufferAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglChoosePixelFormat http://msdn.microsoft.com/en-us/library/dd318284.aspx
wglChoosePixelFormatARB http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
+wglChoosePixelFormatEXT http://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglCopyContext http://msdn.microsoft.com/en-us/library/dd374378.aspx
+wglCreateAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
+wglCreateAssociatedContextAttribsAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglCreateBufferRegionARB http://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglCreateContext http://msdn.microsoft.com/en-us/library/dd374379.aspx
wglCreateContextAttribsARB http://www.opengl.org/registry/specs/ARB/wgl_create_context.txt
+wglCreateDisplayColorTableEXT http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
+wglCreateImageBufferI3D http://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglCreateLayerContext http://msdn.microsoft.com/en-us/library/dd374380.aspx
wglCreatePbufferARB http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+wglCreatePbufferEXT http://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
+wglDXCloseDeviceNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXLockObjectsNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXObjectAccessNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXOpenDeviceNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXRegisterObjectNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXSetResourceShareHandleNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXUnlockObjectsNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDXUnregisterObjectNV http://www.opengl.org/registry/specs/NV/DX_interop.txt
+wglDeleteAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglDeleteBufferRegionARB http://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglDeleteContext http://msdn.microsoft.com/en-us/library/dd374381.aspx
wglDescribeLayerPlane http://msdn.microsoft.com/en-us/library/dd374382.aspx
wglDescribePixelFormat http://msdn.microsoft.com/en-us/library/dd318302.aspx
+wglDestroyDisplayColorTableEXT http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
+wglDestroyImageBufferI3D http://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglDestroyPbufferARB http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+wglDestroyPbufferEXT http://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
+wglDisableFrameLockI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
+wglDisableGenlockI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglEnableFrameLockI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
+wglEnableGenlockI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglEndFrameTrackingI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
+wglEnumerateVideoCaptureDevicesNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+wglEnumerateVideoDevicesNV http://www.opengl.org/registry/specs/NV/present_video.txt
+wglGenlockSampleRateI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGenlockSourceDelayI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGenlockSourceEdgeI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGenlockSourceI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGetContextGPUIDAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
+wglGetCurrentAssociatedContextAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglGetCurrentContext http://msdn.microsoft.com/en-us/library/dd374383.aspx
wglGetCurrentDC http://msdn.microsoft.com/en-us/library/dd374384.aspx
wglGetCurrentReadDCARB http://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt
+wglGetCurrentReadDCEXT http://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt
+wglGetDigitalVideoParametersI3D http://www.opengl.org/registry/specs/I3D/wgl_digital_video_control.txt
+wglGetFrameUsageI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
+wglGetGPUIDsAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
+wglGetGPUInfoAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
+wglGetGammaTableI3D http://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
+wglGetGammaTableParametersI3D http://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
+wglGetGenlockSampleRateI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGetGenlockSourceDelayI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGetGenlockSourceEdgeI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglGetGenlockSourceI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
wglGetLayerPaletteEntries http://msdn.microsoft.com/en-us/library/dd374385.aspx
+wglGetMscRateOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglGetPbufferDCARB http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+wglGetPbufferDCEXT http://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
wglGetPixelFormat http://msdn.microsoft.com/en-us/library/dd318349.aspx
wglGetPixelFormatAttribfvARB http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
+wglGetPixelFormatAttribfvEXT http://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglGetPixelFormatAttribivARB http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt
+wglGetPixelFormatAttribivEXT http://www.opengl.org/registry/specs/EXT/wgl_pixel_format.txt
wglGetProcAddress http://msdn.microsoft.com/en-us/library/dd374386.aspx
+wglGetSwapIntervalEXT http://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt
+wglGetSyncValuesOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
+wglIsEnabledFrameLockI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
+wglIsEnabledGenlockI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglJoinSwapGroupNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
+wglLoadDisplayColorTableEXT http://www.opengl.org/registry/specs/EXT/wgl_display_color_table.txt
+wglLockVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+wglMakeAssociatedContextCurrentAMD http://www.opengl.org/registry/specs/AMD/wgl_gpu_association.txt
wglMakeContextCurrentARB http://www.opengl.org/registry/specs/ARB/wgl_make_current_read.txt
+wglMakeContextCurrentEXT http://www.opengl.org/registry/specs/EXT/wgl_make_current_read.txt
wglMakeCurrent http://msdn.microsoft.com/en-us/library/dd374387.aspx
+wglQueryCurrentContextNV http://www.opengl.org/registry/specs/NV/present_video.txt
+wglQueryFrameCountNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
+wglQueryFrameLockMasterI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_lock.txt
+wglQueryFrameTrackingI3D http://www.opengl.org/registry/specs/I3D/wgl_swap_frame_usage.txt
+wglQueryGenlockMaxSourceDelayI3D http://www.opengl.org/registry/specs/I3D/wgl_genlock.txt
+wglQueryMaxSwapGroupsNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglQueryPbufferARB http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+wglQueryPbufferEXT http://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
+wglQuerySwapGroupNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
+wglQueryVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
wglRealizeLayerPalette http://msdn.microsoft.com/en-us/library/dd374388.aspx
+wglReleaseImageBufferEventsI3D http://www.opengl.org/registry/specs/I3D/wgl_image_buffer.txt
wglReleasePbufferDCARB http://www.opengl.org/registry/specs/ARB/wgl_pbuffer.txt
+wglReleasePbufferDCEXT http://www.opengl.org/registry/specs/EXT/wgl_pbuffer.txt
+wglReleaseVideoCaptureDeviceNV http://www.opengl.org/registry/specs/NV/video_capture.txt
+wglResetFrameCountNV http://www.opengl.org/registry/specs/NV/wgl_swap_group.txt
wglRestoreBufferRegionARB http://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
wglSaveBufferRegionARB http://www.opengl.org/registry/specs/ARB/wgl_buffer_region.txt
+wglSetDigitalVideoParametersI3D http://www.opengl.org/registry/specs/I3D/wgl_digital_video_control.txt
+wglSetGammaTableI3D http://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
+wglSetGammaTableParametersI3D http://www.opengl.org/registry/specs/I3D/wgl_gamma.txt
wglSetLayerPaletteEntries http://msdn.microsoft.com/en-us/library/dd374389.aspx
wglSetPixelFormat http://msdn.microsoft.com/en-us/library/dd369049.aspx
+wglSetStereoEmitterState3DL http://www.opengl.org/registry/specs/3DL/stereo_control.txt
wglShareLists http://msdn.microsoft.com/en-us/library/dd374390.aspx
wglSwapBuffers http://msdn.microsoft.com/en-us/library/dd369060.aspx
+wglSwapBuffersMscOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
+wglSwapIntervalEXT http://www.opengl.org/registry/specs/EXT/wgl_swap_control.txt
wglSwapLayerBuffers http://msdn.microsoft.com/en-us/library/dd374391.aspx
+wglSwapLayerBuffersMscOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
wglUseFontBitmaps http://msdn.microsoft.com/en-us/library/dd374392.aspx
wglUseFontOutlines http://msdn.microsoft.com/en-us/library/dd374393.aspx
+wglWaitForMscOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt
+wglWaitForSbcOML http://www.opengl.org/registry/specs/OML/wgl_sync_control.txt