From acc6a141b8976d0615e03c4530b64cefdb1aa199 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Mon, 1 Jul 2013 12:06:37 +0100 Subject: [PATCH] tools/trace: Return dummy fence object to silence warnings. --- src/gallium/tools/trace/dump_state.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/tools/trace/dump_state.py b/src/gallium/tools/trace/dump_state.py index f7ac76935e5..9711a661ac0 100755 --- a/src/gallium/tools/trace/dump_state.py +++ b/src/gallium/tools/trace/dump_state.py @@ -523,7 +523,8 @@ class Context(Dispatcher): resource.data[box.x : box.x + box.width] = data def flush(self, flags): - pass + # Return a fake fence + return self.interpreter.call_no def clear(self, buffers, color, depth, stencil): pass -- 2.30.2