diff options
author | Tapani Pälli <[email protected]> | 2018-11-13 09:57:09 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-12-19 09:38:41 +0200 |
commit | bb0721aea4dd1607b873dd03cffe391ed658a713 (patch) | |
tree | 3f9fc6c1a6f43e2f8a3c582e3d4c6405a7471657 /src/intel/vulkan/anv_private.h | |
parent | c070b0e25faeb43cb43acdfde006cf9d81e6302f (diff) |
anv: add VkFormat field as part of anv_format
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index cd24714f93e..903931472da 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -2555,6 +2555,7 @@ struct anv_format_plane { struct anv_format { struct anv_format_plane planes[3]; + VkFormat vk_format; uint8_t n_planes; bool can_ycbcr; }; |