summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nv50/nv50_program.h
diff options
context:
space:
mode:
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>2009-12-14 11:10:16 +0100
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>2009-12-14 11:12:59 +0100
commit1778ddaf74aba72df167769bf42150810aac91a3 (patch)
treefb22865f066d0f1a9384640a98bd4c7564900628 /src/gallium/drivers/nv50/nv50_program.h
parentd4d880199ead954e79cad141f7a29f7dd17fe7fc (diff)
nv50: store immediates as uint32
Sometimes we want non-float immediates, hacking them into floats isn't nice. Sorry, this should have already been committed before.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_program.h')
-rw-r--r--src/gallium/drivers/nv50/nv50_program.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_program.h b/src/gallium/drivers/nv50/nv50_program.h
index 255c7c737e..4a90c372ce 100644
--- a/src/gallium/drivers/nv50/nv50_program.h
+++ b/src/gallium/drivers/nv50/nv50_program.h
@@ -37,7 +37,7 @@ struct nv50_program {
struct nouveau_bo *bo;
- float *immd;
+ uint32_t *immd;
unsigned immd_nr;
unsigned param_nr;