diff options
author | Chad Versace <[email protected]> | 2016-01-27 17:26:18 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2016-01-27 18:38:15 -0800 |
commit | 9b240a1e3d875c38dce9dbae57de73e03b8690cb (patch) | |
tree | 1da05fad373f5fcb36820d1eb0b6a95241ab776c /src | |
parent | 61d3d49820ebcdc8113f9471acee4f4a87f80ceb (diff) |
anv/skl: Fix crash in 16x multisampling
We built meta clear and resolve pipelines for only up to 8x samples.
There were no 16x pipelines.
Diffstat (limited to 'src')
-rw-r--r-- | src/vulkan/anv_private.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vulkan/anv_private.h b/src/vulkan/anv_private.h index e328d3dcd71..6e44e88e10c 100644 --- a/src/vulkan/anv_private.h +++ b/src/vulkan/anv_private.h @@ -75,6 +75,7 @@ extern "C" { #define MAX_PUSH_CONSTANTS_SIZE 128 #define MAX_DYNAMIC_BUFFERS 16 #define MAX_IMAGES 8 +#define MAX_SAMPLES_LOG2 4 /* SKL supports 16 samples */ #define ICD_LOADER_MAGIC 0x01CDC0DE @@ -581,7 +582,7 @@ struct anv_meta_state { struct anv_pipeline *depth_only_pipeline; struct anv_pipeline *stencil_only_pipeline; struct anv_pipeline *depthstencil_pipeline; - } clear[4]; + } clear[1 + MAX_SAMPLES_LOG2]; struct { VkRenderPass render_pass; @@ -603,7 +604,7 @@ struct anv_meta_state { /** * Use pipeline `i` for images with `2^i` samples. */ - VkPipeline pipelines[4]; + VkPipeline pipelines[1 + MAX_SAMPLES_LOG2]; VkRenderPass pass; VkPipelineLayout pipeline_layout; |