From: Christoph Bumiller Date: Sat, 15 Oct 2011 09:49:55 +0000 (+0200) Subject: nvc0: fix location of the PrimitiveID output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3cc1dd5b8060ac2e4fc11318683720a6b6dc991a;p=mesa.git nvc0: fix location of the PrimitiveID output --- diff --git a/src/gallium/drivers/nvc0/nvc0_program.c b/src/gallium/drivers/nvc0/nvc0_program.c index 7893172ff7a..c422c9b1087 100644 --- a/src/gallium/drivers/nvc0/nvc0_program.c +++ b/src/gallium/drivers/nvc0/nvc0_program.c @@ -78,7 +78,7 @@ nvc0_shader_output_address(unsigned sn, unsigned si, unsigned ubase) { switch (sn) { case NV50_SEMANTIC_TESSFACTOR: return 0x000 + si * 0x4; - case TGSI_SEMANTIC_PRIMID: return 0x040; + case TGSI_SEMANTIC_PRIMID: return 0x060; case NV50_SEMANTIC_LAYER: return 0x064; case NV50_SEMANTIC_VIEWPORTINDEX: return 0x068; case TGSI_SEMANTIC_PSIZE: return 0x06c; @@ -441,8 +441,10 @@ nvc0_fp_gen_header(struct nvc0_program *fp, struct nv50_ir_prog_info *info) for (c = 0; c < 4; ++c) { if (!(info->in[i].mask & (1 << c))) continue; - if (info->in[i].slot[0] == (0x070 / 4)) { - fp->hdr[5] |= 1 << (28 + c); + a = info->in[i].slot[c]; + if (info->in[i].slot[0] >= (0x060 / 4) && + info->in[i].slot[0] <= (0x07c / 4)) { + fp->hdr[5] |= 1 << (24 + (a - 0x060 / 4)); } else if (info->in[i].slot[0] == (0x2e0 / 4)) { if (c <= 1) @@ -451,7 +453,7 @@ nvc0_fp_gen_header(struct nvc0_program *fp, struct nv50_ir_prog_info *info) if (info->in[i].slot[c] < (0x040 / 4) || info->in[i].slot[c] > (0x380 / 4)) continue; - a = info->in[i].slot[c] * 2; + a *= 2; if (info->in[i].slot[0] >= (0x2c0 / 4)) a -= 32; fp->hdr[4 + a / 32] |= m << (a % 32);