diff options
author | Brian <[email protected]> | 2007-03-09 09:08:41 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-03-09 09:13:49 -0700 |
commit | f9f79c8d770e696249bd98c68b563f887562c974 (patch) | |
tree | eeb8fbfa43c0e33bfbc6113679cb1f49e418d1c0 /src/mesa/main/texstore.c | |
parent | 4d9901a1cab8e0d55b1b2309cf3ffec235e53149 (diff) |
New IMAGE_RED_TO_LUMINANCE flag passed to _mesa_pack_rgba_span_float() to fix glGetTexImage(GL_LUMINANCE) bug #10232.
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index 87f8fa7a0d4..994fb167306 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -3611,7 +3611,7 @@ _mesa_get_teximage(GLcontext *ctx, GLenum target, GLint level, } _mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format, type, dest, - &ctx->Pack, 0x0 /*image xfer ops*/); + &ctx->Pack, IMAGE_RED_TO_LUMINANCE); } /* format */ } /* row */ } /* img */ |