diff options
Diffstat (limited to 'src/intel/vulkan/anv_private.h')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index a80e8519257..27d2c342033 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -2420,6 +2420,11 @@ struct anv_image { */ struct anv_bo *bo; VkDeviceSize bo_offset; + + /** + * When destroying the image, also free the bo. + * */ + bool bo_is_owned; } planes[3]; }; |