Re: [Mesa-dev] [PATCH v2] i965/gen6/gs: Handle case where a GS doesn't allocate VUE

2018-06-21 Thread andrii.simiklit
Hello, Thanks for your feedback. I made changes which you requested. I hope that I understood you right. The solution which you suggested "VUE allocation unconditionally" fixes this bug and we have avoided the endif in the program end. Ok, then we are in agreement.  Section 1.6.5.4 VUE Allocat

Re: [Mesa-dev] [PATCH] i965/gen6/gs: Handle case where a GS doesn't allocate VUE

2018-06-20 Thread andrii.simiklit
Hello, Thanks for your feedback. We don't implement GS before gen6, and I don't think there are plans for it at this point, so I think we can just simplify the patch by assuming that devinfo->gen is always going to be 6 here (later gens use a different implementation of GS). Got it. I will fix