diff options
author | Brian Paul <[email protected]> | 2005-01-12 04:01:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-01-12 04:01:08 +0000 |
commit | a9e34c68ac0538699a144f67d3ce83ccb8f49be9 (patch) | |
tree | ae9f6d8f3dd361ecc4303e7e19dbe6c9330ee726 /src/mesa/glapi/gl_API.xml | |
parent | 591b72b6a9718e908b11c7c2fd3bbf9e5b432677 (diff) |
Some initial work for OpenGL 2.0: glStencilFunc/Op/MaskSeparate() functions.
Diffstat (limited to 'src/mesa/glapi/gl_API.xml')
-rw-r--r-- | src/mesa/glapi/gl_API.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mesa/glapi/gl_API.xml b/src/mesa/glapi/gl_API.xml index 662f20afb9d..367c63ca66c 100644 --- a/src/mesa/glapi/gl_API.xml +++ b/src/mesa/glapi/gl_API.xml @@ -4252,6 +4252,30 @@ glx: </category> +<category name="2.0"> + <!-- XXX this section is very much incomplete!!! --> + <!-- These function offsets may change too!!! --> + + <function name="StencilFuncSeparate" offset="796"> + <param name="face" type="GLenum"/> + <param name="func" type="GLenum"/> + <param name="ref" type="GLint"/> + <param name="mask" type="GLuint"/> + </function> + + <function name="StencilOpSeparate" offset="797"> + <param name="face" type="GLenum"/> + <param name="fail" type="GLenum"/> + <param name="zfail" type="GLenum"/> + <param name="zpass" type="GLenum"/> + </function> + + <function name="StencilMaskSeparate" offset="798"> + <param name="face" type="GLenum"/> + <param name="mask" type="GLuint"/> + </function> +</category> + <!-- ARB extensions sorted by extension number. --> |