Module: Mesa Branch: main Commit: 3f027f7dccc76383501104780ad29a0a93c364b2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3f027f7dccc76383501104780ad29a0a93c364b2
Author: Faith Ekstrand <[email protected]> Date: Mon Nov 20 10:56:58 2023 -0600 nak: Default InstrDeps::delay to 0 Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26291> --- src/nouveau/compiler/nak_ir.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/compiler/nak_ir.rs b/src/nouveau/compiler/nak_ir.rs index 21eb841ec09..e89cb64ccc6 100644 --- a/src/nouveau/compiler/nak_ir.rs +++ b/src/nouveau/compiler/nak_ir.rs @@ -4468,7 +4468,7 @@ pub struct InstrDeps { impl InstrDeps { pub fn new() -> InstrDeps { InstrDeps { - delay: MAX_INSTR_DELAY, + delay: 0, yld: false, wr_bar: -1, rd_bar: -1,
