From: Lionel Landwerlin Date: Wed, 30 Aug 2017 06:53:34 +0000 (+0100) Subject: anv: use device->info instead of brw->is_* X-Git-Tag: upstream/18.1.0~6367 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de9649071a7ded45b75bd935b0f59ca13d8e642c;p=platform%2Fupstream%2Fmesa.git anv: use device->info instead of brw->is_* Signed-off-by: Lionel Landwerlin Reviewed-by: Samuel Iglesias Gonsálvez Reviewed-by: Emil Velikov --- diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index 83c4487..6dfa49b 100644 --- a/src/intel/vulkan/genX_pipeline.c +++ b/src/intel/vulkan/genX_pipeline.c @@ -1700,7 +1700,7 @@ genX(graphics_pipeline_create)( * whole fixed function pipeline" means to emit a PIPE_CONTROL with the "CS * Stall" bit set. */ - if (!brw->is_haswell && !brw->is_baytrail) + if (!device->info.is_haswell && !device->info.is_baytrail) gen7_emit_vs_workaround_flush(brw); #endif