diff options
author | Marek Olšák <[email protected]> | 2011-07-11 01:39:53 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-07-11 03:04:17 +0200 |
commit | 01f48a979d85525acd060c8055ec835a1b56ea87 (patch) | |
tree | 8790bee28d87605fd473b19906dd6fc75876e500 /src/mesa/main/pack.h | |
parent | 91a52dae97379d118965567b5c11e393996baeb9 (diff) |
mesa: implement packing of DEPTH_STENCIL & FLOAT_32_UNSIGNED_INT_24_8_REV combo
Tested with the new piglit fbo-depthstencil test.
Diffstat (limited to 'src/mesa/main/pack.h')
-rw-r--r-- | src/mesa/main/pack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/pack.h b/src/mesa/main/pack.h index 78238ea5839..00aab409e42 100644 --- a/src/mesa/main/pack.h +++ b/src/mesa/main/pack.h @@ -130,8 +130,8 @@ _mesa_pack_depth_span(struct gl_context *ctx, GLuint n, GLvoid *dest, extern void -_mesa_pack_depth_stencil_span(struct gl_context *ctx, - GLuint n, GLuint *dest, +_mesa_pack_depth_stencil_span(struct gl_context *ctx,GLuint n, + GLenum dstType, GLuint *dest, const GLfloat *depthVals, const GLstencil *stencilVals, const struct gl_pixelstore_attrib *dstPacking); |