mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
r600/sfn: scheduled instructions are always ready
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21347>
This commit is contained in:
parent
5d6b80bf5b
commit
7fdb056277
1 changed files with 2 additions and 0 deletions
|
|
@ -60,6 +60,8 @@ Instr::print(std::ostream& os) const
|
|||
bool
|
||||
Instr::ready() const
|
||||
{
|
||||
if (is_scheduled())
|
||||
return true;
|
||||
for (auto& i : m_required_instr)
|
||||
if (!i->ready())
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue