2017-04-20 6:38 GMT+08:00 Lyude <[email protected]>: > EMIT only applies to geometry shaders. For everything else, we want to > export the viewport normally. > > Signed-off-by: Lyude <[email protected]>
Reviewed-by: Boyan Ding <[email protected]> > > Changes since v1: > - Put back old conditional for Converter::storeDst > > Signed-off-by: Lyude <[email protected]> > --- > src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > index 92cc13d..b583001 100644 > --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp > @@ -2156,6 +2156,7 @@ Converter::storeDst(const > tgsi::Instruction::DstRegister dst, int c, > /* Save the viewport index into a scratch register so that it can be > exported at EMIT time */ > if (info->out[idx].sn == TGSI_SEMANTIC_VIEWPORT_INDEX && > + prog->getType() == Program::TYPE_GEOMETRY && > viewport != NULL) > mkOp1(OP_MOV, TYPE_U32, viewport, val); > else > -- > 2.9.3 > > _______________________________________________ > mesa-dev mailing list > [email protected] > https://lists.freedesktop.org/mailman/listinfo/mesa-dev _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
