diff options
author | Christoph Bumiller <[email protected]> | 2009-12-14 11:10:16 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2009-12-14 11:12:59 +0100 |
commit | 1778ddaf74aba72df167769bf42150810aac91a3 (patch) | |
tree | fb22865f066d0f1a9384640a98bd4c7564900628 /src/gallium/drivers/nv50/nv50_program.h | |
parent | d4d880199ead954e79cad141f7a29f7dd17fe7fc (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.h | 2 |
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 255c7c737ef..4a90c372ce3 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; |