<div dir="ltr"><div>Assuming Jenkins is happy with it (both Vulkan and GL),<br><br></div>Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 23, 2017 at 2:59 PM, Rafael Antognolli <span dir="ltr"><<a href="mailto:rafael.antognolli@intel.com" target="_blank">rafael.antognolli@intel.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The PRM SKL-Vol 2b-05.16 says:<br>
<br>
   "Within a VERTEX_ELEMENT_STATE structure, if a Component Control<br>
   field is set to something other than VFCOMP_STORE_SRC, no<br>
   higher-numbered Component Control fields may be set to<br>
   VFCOMP_STORE_SRC. In other words, only trailing components can be set<br>
   to something other than VFCOMP_STORE_SRC."<br>
<br>
Since we set the component 1 to VFCOMP_STORE_0 on gen8+, and<br>
VFCOMP_STORE_IID on gen5+, and we are not using components 2 and 3,<br>
let's also set them to VFCOMP_STORE_0.<br>
<br>
Signed-off-by: Rafael Antognolli <<a href="mailto:rafael.antognolli@intel.com">rafael.antognolli@intel.com</a>><br>
---<br>
 src/intel/blorp/blorp_genX_<wbr>exec.h | 4 ++--<br>
 1 file changed, 2 insertions(+), 2 deletions(-)<br>
<br>
diff --git a/src/intel/blorp/blorp_genX_<wbr>exec.h b/src/intel/blorp/blorp_genX_<wbr>exec.h<br>
index 93534169ef..524736fbc0 100644<br>
--- a/src/intel/blorp/blorp_genX_<wbr>exec.h<br>
+++ b/src/intel/blorp/blorp_genX_<wbr>exec.h<br>
@@ -395,8 +395,8 @@ blorp_emit_vertex_elements(<wbr>struct blorp_batch *batch,<br>
 #else<br>
       .Component1Control = VFCOMP_STORE_0,<br>
 #endif<br>
-      .Component2Control = VFCOMP_STORE_SRC,<br>
-      .Component3Control = VFCOMP_STORE_SRC,<br>
+      .Component2Control = VFCOMP_STORE_0,<br>
+      .Component3Control = VFCOMP_STORE_0,<br>
 #if GEN_GEN <= 5<br>
       .DestinationElementOffset = slot * 4,<br>
 #endif<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.13.5<br>
<br>
</font></span></blockquote></div><br></div>