intel: Move WA flags to pipeline.h
The pipeline now flags what workarounds needed to be emitted
just before and just after the pipeline state is transferred
to the command buffer BO.
diff --git a/icd/intel/pipeline.h b/icd/intel/pipeline.h
index a9f2249..1325780 100644
--- a/icd/intel/pipeline.h
+++ b/icd/intel/pipeline.h
@@ -103,6 +103,12 @@
#define INTEL_PSO_CMD_ENTRIES 32
+enum {
+ GEN6_WA_POST_SYNC_FLUSH = 1 << 0,
+ GEN6_WA_GEN7_VS_FLUSH = 1 << 1,
+ GEN7_WA_MULTISAMPLE_FLUSH = 1 << 2,
+};
+
/**
* 3D pipeline.
*/