summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/svga/svga_tgsi.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2010-09-16 16:51:03 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-09-20 09:26:49 +0100
commit279492386ffe741c2f5b91919b37068562b6a282 (patch)
tree42e8025f22ceaa224421661b56705c9ca361f0c5 /src/gallium/drivers/svga/svga_tgsi.c
parent0742e0b3767072fe664ca9f39fc31d86d8d314ed (diff)
svga: Integer constant register file has a separate namespace.
Count int and float constants independently. Since there are only few i# constants available and hundreds of c# constants, it would be too easy to end up with an i# declaration out of its range.
Diffstat (limited to 'src/gallium/drivers/svga/svga_tgsi.c')
-rw-r--r--src/gallium/drivers/svga/svga_tgsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/svga/svga_tgsi.c b/src/gallium/drivers/svga/svga_tgsi.c
index 0cd620189b..781fe6334a 100644
--- a/src/gallium/drivers/svga/svga_tgsi.c
+++ b/src/gallium/drivers/svga/svga_tgsi.c
@@ -203,7 +203,7 @@ svga_tgsi_translate( const struct svga_shader *shader,
emit.imm_start += key.vkey.num_zero_stride_vertex_elements;
}
- emit.nr_hw_const = (emit.imm_start + emit.info.file_max[TGSI_FILE_IMMEDIATE] + 1);
+ emit.nr_hw_float_const = (emit.imm_start + emit.info.file_max[TGSI_FILE_IMMEDIATE] + 1);
emit.nr_hw_temp = emit.info.file_max[TGSI_FILE_TEMPORARY] + 1;
emit.in_main_func = TRUE;