projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a35de3
)
fixed a convolution pixel store bug
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 28 Nov 2000 00:04:39 +0000
(
00:04
+0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 28 Nov 2000 00:04:39 +0000
(
00:04
+0000)
src/mesa/swrast/s_readpix.c
patch
|
blob
|
history
diff --git
a/src/mesa/swrast/s_readpix.c
b/src/mesa/swrast/s_readpix.c
index ac91dadcf3a45861301b038d7e4969c5262f3cc7..4c5e154b8fdaea9e7ba68f5d246fa73dbc639939 100644
(file)
--- a/
src/mesa/swrast/s_readpix.c
+++ b/
src/mesa/swrast/s_readpix.c
@@
-1,4
+1,4
@@
-/* $Id: s_readpix.c,v 1.
3 2000/11/13 20:02:57 keithw
Exp $ */
+/* $Id: s_readpix.c,v 1.
4 2000/11/28 00:04:39 brianp
Exp $ */
/*
* Mesa 3-D graphics library
@@
-688,7
+688,7
@@
static void read_rgba_pixels( GLcontext *ctx,
src = convImage;
for (row = 0; row < height; row++) {
GLvoid *dest;
- dest = _mesa_image_address(packing, pixels,
w
idth, height,
+ dest = _mesa_image_address(packing, pixels,
readW
idth, height,
format, type, 0, row, 0);
_mesa_pack_float_rgba_span(ctx, readWidth,
(const GLfloat (*)[4]) src,