Mesa (master): r300g: fix constant buffer upload once again for r3xx->r4xx

Marek Olšák mareko at kemper.freedesktop.org
Thu Aug 26 05:20:25 UTC 2010


Module: Mesa
Branch: master
Commit: c1ab2c327e37119b5dda3de85f672a8af22ad1bb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=c1ab2c327e37119b5dda3de85f672a8af22ad1bb

Author: Marek Olšák <maraeo at gmail.com>
Date:   Thu Aug 26 03:28:47 2010 +0200

r300g: fix constant buffer upload once again for r3xx->r4xx

---

 src/gallium/drivers/r300/r300_emit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c
index 90bc9c5..58d7e4f 100644
--- a/src/gallium/drivers/r300/r300_emit.c
+++ b/src/gallium/drivers/r300/r300_emit.c
@@ -182,7 +182,7 @@ void r300_emit_fs_constants(struct r300_context* r300, unsigned size, void *stat
     OUT_CS_REG_SEQ(R300_PFS_PARAM_0_X, count * 4);
     if (buf->remap_table){
         for (i = 0; i < count; i++) {
-            uint32_t *data = &buf->ptr[buf->remap_table[i]*4];
+            float *data = (float*)&buf->ptr[buf->remap_table[i]*4];
             for (j = 0; j < 4; j++)
                 OUT_CS(pack_float24(data[j]));
         }




More information about the mesa-commit mailing list