diff options
author | Lionel Landwerlin <[email protected]> | 2017-08-30 07:53:34 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-08-30 17:59:17 +0100 |
commit | de9649071a7ded45b75bd935b0f59ca13d8e642c (patch) | |
tree | 1ecfe3e3627d3e1dc7b8ccf5e63a7228cf5560c1 | |
parent | 8c9df0daf20206fafb7df77b1edcbc41b8e91372 (diff) |
anv: use device->info instead of brw->is_*
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/intel/vulkan/genX_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/genX_pipeline.c b/src/intel/vulkan/genX_pipeline.c index 83c4487bf9b..6dfa49b8737 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 |