intel: fix max entries of 3DSTATE_URB_VS on Haswell GT2+
diff --git a/icd/intel/pipeline.c b/icd/intel/pipeline.c
index 41f2d92..4844b9f 100644
--- a/icd/intel/pipeline.c
+++ b/icd/intel/pipeline.c
@@ -437,7 +437,7 @@
 
         if (intel_gpu_gen(builder->gpu) >= INTEL_GEN(7.5)) {
             const int max_vs_entry_count =
-                (builder->gpu->gt >= 2) ? 1644 : 640;
+                (builder->gpu->gt >= 2) ? 1664 : 640;
             const int max_gs_entry_count =
                 (builder->gpu->gt >= 2) ? 640 : 256;
             if (vs_entry_count >= max_vs_entry_count)