diff options
author | Nicolai Haehnle <nhaehnle@gmail.com> | 2007-03-18 11:02:35 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-03-18 11:02:35 -0600 |
commit | 441f038748975d4e14ca3da7098045dd1013e531 (patch) | |
tree | 63c4ab1e23911ea5a0f1c2f8a9a68a80f0fc2186 /src/mesa/swrast/s_readpix.c | |
parent | dd868b4100f748e5187c58138d1b55fe8e8eddef (diff) |
fix assertion in read_depth_pixels()
Diffstat (limited to 'src/mesa/swrast/s_readpix.c')
-rw-r--r-- | src/mesa/swrast/s_readpix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_readpix.c b/src/mesa/swrast/s_readpix.c index 15dc8106b4..c5524c0630 100644 --- a/src/mesa/swrast/s_readpix.c +++ b/src/mesa/swrast/s_readpix.c @@ -119,7 +119,7 @@ read_depth_pixels( GLcontext *ctx, && !biasOrScale && !packing->SwapBytes) { /* Special case: directly read 24-bit unsigned depth values. */ GLint j; - ASSERT(rb->InternalFormat == GL_DEPTH_COMPONENT32); + ASSERT(rb->InternalFormat == GL_DEPTH_COMPONENT24); ASSERT(rb->DataType == GL_UNSIGNED_INT); for (j = 0; j < height; j++, y++) { GLuint *dest = (GLuint *) |