projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fdf054a
)
r300g: fix constant buffer upload once again for r3xx->r4xx
author
Marek Olšák
<maraeo@gmail.com>
Thu, 26 Aug 2010 01:28:47 +0000
(
03:28
+0200)
committer
Marek Olšák
<maraeo@gmail.com>
Thu, 26 Aug 2010 05:19:10 +0000
(07:19 +0200)
src/gallium/drivers/r300/r300_emit.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/r300/r300_emit.c
b/src/gallium/drivers/r300/r300_emit.c
index 90bc9c56d38469c4a2331765d935d4fbdbcc2c6e..58d7e4ffe9362a45ea1a3b36412b33a9c190e626 100644
(file)
--- 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]));
}