mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 20:38:06 +02:00
nv50/ir: make use of auxCBSlot instead of magic numbers
This avoids using magic numbers for the driver constbuf slot which is always 15 except for compute shaders on gk104+ where the slot 0 is used. For gk104+, some special compute-related values like the thread index are uploaded to screen->parm which is currently bound on c0. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Acked-by: Ilia Mirkin <imirkin@alum.mit.edu> Acked-by: Pierre Moreau <pierre.morrow@free.fr>
This commit is contained in:
parent
d86933e6f4
commit
26cc411db8
2 changed files with 4 additions and 2 deletions
|
|
@ -2178,7 +2178,8 @@ Converter::getResourceBase(const int r)
|
|||
|
||||
switch (r) {
|
||||
case TGSI_RESOURCE_GLOBAL:
|
||||
sym = new_Symbol(prog, nv50_ir::FILE_MEMORY_GLOBAL, 15);
|
||||
sym = new_Symbol(prog, nv50_ir::FILE_MEMORY_GLOBAL,
|
||||
info->io.auxCBSlot);
|
||||
break;
|
||||
case TGSI_RESOURCE_LOCAL:
|
||||
assert(prog->getType() == Program::TYPE_COMPUTE);
|
||||
|
|
|
|||
|
|
@ -1699,7 +1699,8 @@ NVC0LoweringPass::handleRDSV(Instruction *i)
|
|||
}
|
||||
addr += prog->driver->prop.cp.gridInfoBase;
|
||||
bld.mkLoad(TYPE_U32, i->getDef(0),
|
||||
bld.mkSymbol(FILE_MEMORY_CONST, 0, TYPE_U32, addr), NULL);
|
||||
bld.mkSymbol(FILE_MEMORY_CONST, prog->driver->io.auxCBSlot,
|
||||
TYPE_U32, addr), NULL);
|
||||
break;
|
||||
case SV_SAMPLE_INDEX:
|
||||
// TODO: Properly pass source as an address in the PIX address space
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue