From: Christoph Bumiller Date: Tue, 17 Apr 2012 16:35:16 +0000 (+0200) Subject: nv50: specify location of UCPs to code generator X-Git-Tag: 062012170305~739 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48aec56559a0199d8099d9edff8e51312f55f15c;p=profile%2Fivi%2Fmesa.git nv50: specify location of UCPs to code generator Was made configurable in e44089b2f79aa2dcaacf348911433d1e21235c0c for Kepler but forgot to update nv50. --- diff --git a/src/gallium/drivers/nv50/nv50_program.c b/src/gallium/drivers/nv50/nv50_program.c index 4a5fd0a..71254e8 100644 --- a/src/gallium/drivers/nv50/nv50_program.c +++ b/src/gallium/drivers/nv50/nv50_program.c @@ -251,6 +251,8 @@ nv50_program_translate(struct nv50_program *prog, uint16_t chipset) info->bin.sourceRep = NV50_PROGRAM_IR_TGSI; info->bin.source = (void *)prog->pipe.tokens; + info->io.ucpBinding = 15; + info->io.ucpBase = 0; info->io.genUserClip = prog->vp.clpd_nr; info->assignSlots = nv50_program_assign_varying_slots;