diff options
author | Brian <[email protected]> | 2007-10-30 09:13:58 -0600 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2008-04-04 12:44:14 +0200 |
commit | 102f2ef4fc2d45c51926add6bdf51ef6fcb43b35 (patch) | |
tree | 246b7b18beba46965497898367c0d33baa16bf3a /src/mesa/main/stencil.h | |
parent | 04097f558325eae35b5da1b72e6da938b433ad0a (diff) |
Finish up ATI_separate_stencil
Add entrypoints to glapi XML file and regenerate files.
Implement glStencilOpSeparateATI().
Consolidate some code in stencil.c
Diffstat (limited to 'src/mesa/main/stencil.h')
-rw-r--r-- | src/mesa/main/stencil.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/main/stencil.h b/src/mesa/main/stencil.h index 0be98100053..15a65dbcac0 100644 --- a/src/mesa/main/stencil.h +++ b/src/mesa/main/stencil.h @@ -5,9 +5,9 @@ /* * Mesa 3-D graphics library - * Version: 6.5 + * Version: 7.1 * - * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2007 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -62,6 +62,10 @@ _mesa_StencilOpSeparate(GLenum face, GLenum fail, GLenum zfail, GLenum zpass); extern void GLAPIENTRY _mesa_StencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask); + +extern void APIENTRY +_mesa_StencilOpSeparateATI(GLenum face, GLenum sfail, GLenum zfail, GLenum zpass); + extern void GLAPIENTRY _mesa_StencilFuncSeparateATI(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); |