From: Jordan Justen Date: Sat, 30 Jan 2016 22:56:03 +0000 (-0800) Subject: anv/gen7: Set BypassGatewayControl in MEDIA_VFE_STATE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b207a6b5aa8fb3bb45750dea6619b5d9a91a7ee3;p=mesa.git anv/gen7: Set BypassGatewayControl in MEDIA_VFE_STATE Signed-off-by: Jordan Justen --- diff --git a/src/vulkan/genX_pipeline.c b/src/vulkan/genX_pipeline.c index b10db45bd35..b62e401c4ee 100644 --- a/src/vulkan/genX_pipeline.c +++ b/src/vulkan/genX_pipeline.c @@ -102,7 +102,7 @@ genX(compute_pipeline_create)( .MaximumNumberofThreads = device->info.max_cs_threads - 1, .NumberofURBEntries = ANV_GEN <= 7 ? 0 : 2, .ResetGatewayTimer = true, -#if ANV_GEN == 8 +#if ANV_GEN <= 8 .BypassGatewayControl = true, #endif .URBEntryAllocationSize = ANV_GEN <= 7 ? 0 : 2,