diff options
author | Samuel Pitoiset <[email protected]> | 2020-03-31 15:14:37 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2020-04-08 07:55:12 +0200 |
commit | 6f6276bd244d9a544baee854dec270be6cb9de6a (patch) | |
tree | 8dc6042579a6a8a2ccc6556a29e03e4cc0c6e50e /src/amd/vulkan/radv_private.h | |
parent | 8b7586655fbbcc52de47cc110aa145e3703929cc (diff) |
radv: rename extra graphics pipeline decompress/resummarize fields
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4389>
Diffstat (limited to 'src/amd/vulkan/radv_private.h')
-rw-r--r-- | src/amd/vulkan/radv_private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h index 133f32a4e4e..159266856eb 100644 --- a/src/amd/vulkan/radv_private.h +++ b/src/amd/vulkan/radv_private.h @@ -1712,9 +1712,9 @@ struct radv_graphics_pipeline_create_info { bool db_stencil_clear; bool db_depth_disable_expclear; bool db_stencil_disable_expclear; - bool db_flush_depth_inplace; - bool db_flush_stencil_inplace; - bool db_resummarize; + bool depth_compress_disable; + bool stencil_compress_disable; + bool resummarize_enable; uint32_t custom_blend_mode; }; |