From 8509aceb7449c6ae0bbc3d35c13a05b62fd48bc1 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Mon, 17 May 2021 11:33:26 -0700 Subject: [PATCH] i915g: Disable 3D-pipeline clears. The 3D-pipeline fast clears try to emit FS constants before an FS is necessarily bound, causing segfaults in dEQP. Plus it flushes the whole batchbuffer so it'll probably be slower anyway. Fixes: 6358e6371b31 ("i915g: implement hw clear") Reviewed-by: Adam Jackson Part-of: --- src/gallium/drivers/i915/i915_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c index dbf81f7..395f76a 100644 --- a/src/gallium/drivers/i915/i915_debug.c +++ b/src/gallium/drivers/i915/i915_debug.c @@ -50,7 +50,7 @@ unsigned i915_debug = 0; DEBUG_GET_ONCE_FLAGS_OPTION(i915_debug, "I915_DEBUG", i915_debug_options, 0) DEBUG_GET_ONCE_BOOL_OPTION(i915_no_tiling, "I915_NO_TILING", FALSE) DEBUG_GET_ONCE_BOOL_OPTION(i915_lie, "I915_LIE", TRUE) -DEBUG_GET_ONCE_BOOL_OPTION(i915_use_blitter, "I915_USE_BLITTER", FALSE) +DEBUG_GET_ONCE_BOOL_OPTION(i915_use_blitter, "I915_USE_BLITTER", TRUE) void i915_debug_init(struct i915_screen *is) { -- 2.7.4