r300g: final fix for r3xx constant buffer emission

This commit is contained in:
Marek Olšák 2010-07-17 15:35:03 +02:00
parent f7d6cab6cd
commit 70b27be923
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}