From: Marek Olšák Date: Sat, 17 Jul 2010 13:35:03 +0000 (+0200) Subject: r300g: final fix for r3xx constant buffer emission X-Git-Tag: 062012170305~11355 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70b27be923bcce4da171fb7154bb1df20bd85f87;p=profile%2Fivi%2Fmesa.git r300g: final fix for r3xx constant buffer emission --- 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; }