diff options
author | marha <marha@users.sourceforge.net> | 2011-12-13 15:54:46 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-12-13 15:54:46 +0100 |
commit | b9c84e8e3433d8804b99ec82065ec1e920469d87 (patch) | |
tree | 544149b4c639f53adfc1a9a1d5ba91380adfe910 /mesalib/src/mesa/swrast/s_depthstencil.h | |
parent | 5efb0a5e19b75137b7294b27f4e7878aeb8f0927 (diff) | |
download | vcxsrv-b9c84e8e3433d8804b99ec82065ec1e920469d87.tar.gz vcxsrv-b9c84e8e3433d8804b99ec82065ec1e920469d87.tar.bz2 vcxsrv-b9c84e8e3433d8804b99ec82065ec1e920469d87.zip |
git update pixman mesa 13 dec 2011
Diffstat (limited to 'mesalib/src/mesa/swrast/s_depthstencil.h')
-rw-r--r-- | mesalib/src/mesa/swrast/s_depthstencil.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mesalib/src/mesa/swrast/s_depthstencil.h b/mesalib/src/mesa/swrast/s_depthstencil.h new file mode 100644 index 000000000..0bf624a7b --- /dev/null +++ b/mesalib/src/mesa/swrast/s_depthstencil.h @@ -0,0 +1,39 @@ +/* + * Mesa 3-D graphics library + * Version: 6.5 + * + * Copyright (C) 1999-2006 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"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + + +#ifndef S_DEPTHSTENCIL_H +#define S_DEPTHSTENCIL_H + +struct gl_context; +struct gl_framebuffer; + +void +_swrast_update_depth_buffer(struct gl_context *ctx, struct gl_framebuffer *fb); + +void +_swrast_update_stencil_buffer(struct gl_context *ctx, struct gl_framebuffer *fb); + + +#endif /* S_DEPTHSTENCIL_H */ |