diff options
author | Lionel Landwerlin <[email protected]> | 2017-10-20 18:28:48 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-10-21 02:37:33 +0100 |
commit | 0c95adaf9eb9763016c3319fef6d581b4d6d7359 (patch) | |
tree | 226f70ecd02f98e20401e7bd327747206231a797 /src | |
parent | 0c92651a3bf4471ced629237d9857e8b5e91d84b (diff) |
anv: disable stencil pma fix on Gen > 9
This workaround isn't listed on Gen10.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/gen8_cmd_buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/gen8_cmd_buffer.c b/src/intel/vulkan/gen8_cmd_buffer.c index f19867ca320..751212b8f43 100644 --- a/src/intel/vulkan/gen8_cmd_buffer.c +++ b/src/intel/vulkan/gen8_cmd_buffer.c @@ -259,6 +259,8 @@ want_depth_pma_fix(struct anv_cmd_buffer *cmd_buffer) UNUSED static bool want_stencil_pma_fix(struct anv_cmd_buffer *cmd_buffer) { + if (GEN_GEN > 9) + return false; assert(GEN_GEN == 9); /* From the Skylake PRM Vol. 2c CACHE_MODE_1::STC PMA Optimization Enable: |