mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 02:28:10 +02:00
r600/sfn: Pipe through requesting a register at a given channel
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5963>
This commit is contained in:
parent
55cc712991
commit
deccf02246
2 changed files with 3 additions and 3 deletions
|
|
@ -138,9 +138,9 @@ EmitInstruction::get_literal_register(const nir_src& src) const
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
PValue EmitInstruction::get_temp_register()
|
||||
PValue EmitInstruction::get_temp_register(int channel)
|
||||
{
|
||||
return m_proc.get_temp_register();
|
||||
return m_proc.get_temp_register(channel);
|
||||
}
|
||||
|
||||
GPRVector EmitInstruction::get_temp_vec4()
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ protected:
|
|||
|
||||
int allocate_temp_register();
|
||||
|
||||
PValue get_temp_register();
|
||||
PValue get_temp_register(int channel = -1);
|
||||
GPRVector get_temp_vec4();
|
||||
|
||||
// forwards from ShaderFromNirProcessor
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue