Module: Mesa Branch: master Commit: 48aec56559a0199d8099d9edff8e51312f55f15c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=48aec56559a0199d8099d9edff8e51312f55f15c
Author: Christoph Bumiller <[email protected]> Date: Tue Apr 17 18:35:16 2012 +0200 nv50: specify location of UCPs to code generator Was made configurable in e44089b2f79aa2dcaacf348911433d1e21235c0c for Kepler but forgot to update nv50. --- src/gallium/drivers/nv50/nv50_program.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
