Mesa (master): r300g: final fix for r3xx constant buffer emission

Marek Olšák mareko at kemper.freedesktop.org
Sat Jul 17 15:20:32 UTC 2010


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

Author: Marek Olšák <maraeo at gmail.com>
Date:   Sat Jul 17 15:35:03 2010 +0200

r300g: final fix for r3xx constant buffer emission

---

 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 167e3c0..36a26a7 100644
--- a/src/gallium/drivers/r300/r300_emit.c
+++ b/src/gallium/drivers/r300/r300_emit.c
@@ -181,7 +181,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);
     for (i = 0; i < count; i++)
         for (j = 0; j < 4; j++)
-            OUT_CS(pack_float24(buf->ptr[i*4+j]));
+            OUT_CS(pack_float24(*(float*)&buf->ptr[i*4+j]));
     END_CS;
 }
 




More information about the mesa-commit mailing list