diff options
author | Jordan Justen <[email protected]> | 2016-01-30 14:56:03 -0800 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2016-01-30 15:06:03 -0800 |
commit | b207a6b5aa8fb3bb45750dea6619b5d9a91a7ee3 (patch) | |
tree | 8d58ef9b3d3224381ebabcb180d3733e0ec8272e /src | |
parent | 2d8726a4b7d0b3444f62b22e48115c1de19e5f7d (diff) |
anv/gen7: Set BypassGatewayControl in MEDIA_VFE_STATE
Signed-off-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/vulkan/genX_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, |