diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-18 09:28:04 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-18 09:28:04 -0600 |
commit | e8f8b12bb940794cef8eff52ae8c908ad0604161 (patch) | |
tree | 9b65e00aeedd358104de87de31ff6d47182fb6ef /src | |
parent | f1cfb1e3676fc9e1fea6698ed5e8e79d2b094dae (diff) |
gallium: fix a mix-up in the uint[1] do_row() case
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/util/u_gen_mipmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/u_gen_mipmap.c b/src/gallium/auxiliary/util/u_gen_mipmap.c index d6d8c766ce..d47c677074 100644 --- a/src/gallium/auxiliary/util/u_gen_mipmap.c +++ b/src/gallium/auxiliary/util/u_gen_mipmap.c @@ -322,10 +322,10 @@ do_row(enum dtype datatype, uint comps, int srcWidth, uint i, j, k; const uint *rowA = (const uint *) srcRowA; const uint *rowB = (const uint *) srcRowB; - float *dst = (float *) dstRow; + uint *dst = (uint *) dstRow; for (i = j = 0, k = k0; i < (uint) dstWidth; i++, j += colStride, k += colStride) { - dst[i] = (float) rowA[j] / 4 + (float) rowA[k] / 4 + (float) rowB[j] / 4 + (float) rowB[k] / 4; + dst[i] = rowA[j] / 4 + rowA[k] / 4 + rowB[j] / 4 + rowB[k] / 4; } } |