diff options
author | Brian Paul <[email protected]> | 2005-10-01 16:02:38 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-10-01 16:02:38 +0000 |
commit | 31340f6645b34314469894c02b1df88886811e85 (patch) | |
tree | cf77023da750c500709634a23331a6230c9ae68c /src/mesa/main/image.h | |
parent | 3d61c2e778e5592a52eef21fab6cc301b54f449e (diff) |
added _mesa_pack_depth_stencil_span()
Diffstat (limited to 'src/mesa/main/image.h')
-rw-r--r-- | src/mesa/main/image.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/main/image.h b/src/mesa/main/image.h index 74be4aebaa0..e31959565af 100644 --- a/src/mesa/main/image.h +++ b/src/mesa/main/image.h @@ -189,6 +189,13 @@ _mesa_pack_depth_span( const GLcontext *ctx, GLuint n, GLvoid *dest, const struct gl_pixelstore_attrib *dstPacking ); +extern void +_mesa_pack_depth_stencil_span(const GLcontext *ctx, GLuint n, GLuint *dest, + const GLfloat *depthVals, + const GLstencil *stencilVals, + const struct gl_pixelstore_attrib *dstPacking); + + extern void * _mesa_unpack_image( GLuint dimensions, GLsizei width, GLsizei height, GLsizei depth, |