1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/* Copyright (c) 2015-2025 The Khronos Group Inc.
* Copyright (c) 2015-2025 Valve Corporation
* Copyright (c) 2015-2025 LunarG, Inc.
* Copyright (C) 2015-2025 Google Inc.
* Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
* Modifications Copyright (C) 2022 RasterGrid Kft.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <variant>
#include "state_tracker/device_memory_state.h"
#include "state_tracker/image_layout_map.h"
namespace vvl {
class DeviceState;
class ImageSubState;
class ImageViewSubState;
class Swapchain;
class VideoProfileDesc;
} // namespace vvl
// Transfer VkImageSubresourceRange into VkImageSubresourceLayers struct
static inline VkImageSubresourceLayers LayersFromRange(const VkImageSubresourceRange &subresource_range) {
VkImageSubresourceLayers subresource_layers;
subresource_layers.aspectMask = subresource_range.aspectMask;
subresource_layers.baseArrayLayer = subresource_range.baseArrayLayer;
subresource_layers.layerCount = subresource_range.layerCount;
subresource_layers.mipLevel = subresource_range.baseMipLevel;
return subresource_layers;
}
// Transfer VkImageSubresourceLayers into VkImageSubresourceRange struct
static inline VkImageSubresourceRange RangeFromLayers(const VkImageSubresourceLayers &subresource_layers) {
VkImageSubresourceRange subresource_range;
subresource_range.aspectMask = subresource_layers.aspectMask;
subresource_range.baseArrayLayer = subresource_layers.baseArrayLayer;
subresource_range.layerCount = subresource_layers.layerCount;
subresource_range.baseMipLevel = subresource_layers.mipLevel;
subresource_range.levelCount = 1;
return subresource_range;
}
namespace vvl {
// State for VkImage objects.
// Parent -> child relationships in the object usage tree:
// 1. Normal images:
// vvl::Image [1] -> [1] vvl::DeviceMemory
//
// 2. Sparse images:
// vvl::Image [1] -> [N] vvl::DeviceMemory
//
// 3. VK_IMAGE_CREATE_ALIAS_BIT images:
// vvl::Image [N] -> [1] vvl::DeviceMemory
// All other images using the same device memory are in the aliasing_images set.
//
// 4. Swapchain images
// vvl::Image [N] -> [1] vvl::Swapchain
// All other images using the same swapchain and swapchain_image_index are in the aliasing_images set.
// Note that the images for *every* image_index will show up as parents of the swapchain,
// so swapchain_image_index values must be compared.
//
class Image : public Bindable, public SubStateManager<ImageSubState> {
public:
const vku::safe_VkImageCreateInfo safe_create_info;
const VkImageCreateInfo &create_info;
bool shared_presentable; // True for a front-buffered swapchain image
bool layout_locked; // A front-buffered image that has been presented can never have layout transitioned
const uint64_t ahb_format; // External Android format, if provided
const VkImageSubresourceRange full_range; // The normalized ISR for all levels, layers, and aspects
const VkSwapchainKHR create_from_swapchain;
const bool owned_by_swapchain;
std::shared_ptr<vvl::Swapchain> bind_swapchain;
uint32_t swapchain_image_index;
const VkFormatFeatureFlags2KHR format_features;
// Need to memory requirements for each plane if image is disjoint
const bool disjoint; // True if image was created with VK_IMAGE_CREATE_DISJOINT_BIT
static constexpr int kMaxPlanes = 3;
using MemoryReqs = std::array<VkMemoryRequirements, kMaxPlanes>;
const MemoryReqs requirements;
const bool sparse_residency;
const std::vector<VkSparseImageMemoryRequirements> sparse_requirements;
VkImageFormatProperties image_format_properties = {};
#ifdef VK_USE_PLATFORM_METAL_EXT
const bool metal_image_export;
const bool metal_io_surface_export;
#endif // VK_USE_PLATFORM_METAL
const subresource_adapter::RangeEncoder subresource_encoder; // Subresource resolution encoder
const VkDevice store_device_as_workaround; // TODO REMOVE WHEN encoder can be const
// Tracks current layouts of image subresources. Can be used by multiple threads, so should be locked when in use.
// Record time validation can't use this map. Global image layout is known only during queue submit time.
// When image is aliased with another compatible image this map an its lock are shared between images.
std::shared_ptr<ImageLayoutMap> layout_map;
std::shared_ptr<std::shared_mutex> layout_map_lock;
ReadLockGuard LayoutMapReadLock() const { return ReadLockGuard(*layout_map_lock); }
WriteLockGuard LayoutMapWriteLock() { return WriteLockGuard(*layout_map_lock); }
vvl::unordered_set<std::shared_ptr<const vvl::VideoProfileDesc>> supported_video_profiles;
Image(const DeviceState &dev_data, VkImage handle, const VkImageCreateInfo *pCreateInfo, VkFormatFeatureFlags2KHR features);
Image(const DeviceState &dev_data, VkImage handle, const VkImageCreateInfo *pCreateInfo, VkSwapchainKHR swapchain,
uint32_t swapchain_index, VkFormatFeatureFlags2KHR features);
Image(Image const &rh_obj) = delete;
std::shared_ptr<const Image> shared_from_this() const { return SharedFromThisImpl(this); }
std::shared_ptr<Image> shared_from_this() { return SharedFromThisImpl(this); }
VkImage VkHandle() const { return handle_.Cast<VkImage>(); }
bool HasAHBFormat() const { return ahb_format != 0; }
bool IsCompatibleAliasing(const Image *other_image_state) const;
// returns true if this image could be using the same memory as another image
bool HasAliasFlag() const { return 0 != (create_info.flags & VK_IMAGE_CREATE_ALIAS_BIT); }
bool CanAlias() const { return HasAliasFlag() || bind_swapchain; }
bool IsCreateInfoEqual(const VkImageCreateInfo &other_create_info) const;
bool IsCreateInfoDedicatedAllocationImageAliasingCompatible(const VkImageCreateInfo &other_create_info) const;
bool IsSwapchainImage() const { return create_from_swapchain != VK_NULL_HANDLE; }
// TODO - need to understand if VkBindImageMemorySwapchainInfoKHR counts as "bound"
bool HasBeenBound() const { return (MemoryState() != nullptr) || (bind_swapchain); }
inline bool IsImageTypeEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.imageType == other_create_info.imageType;
}
inline bool IsFormatEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.format == other_create_info.format;
}
inline bool IsMipLevelsEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.mipLevels == other_create_info.mipLevels;
}
inline bool IsUsageEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.usage == other_create_info.usage;
}
inline bool IsSamplesEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.samples == other_create_info.samples;
}
inline bool IsTilingEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.tiling == other_create_info.tiling;
}
inline bool IsArrayLayersEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.arrayLayers == other_create_info.arrayLayers;
}
inline bool IsInitialLayoutEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.initialLayout == other_create_info.initialLayout;
}
inline bool IsSharingModeEqual(const VkImageCreateInfo &other_create_info) const {
return create_info.sharingMode == other_create_info.sharingMode;
}
inline bool IsExtentEqual(const VkImageCreateInfo &other_create_info) const {
return (create_info.extent.width == other_create_info.extent.width) &&
(create_info.extent.height == other_create_info.extent.height) &&
(create_info.extent.depth == other_create_info.extent.depth);
}
inline bool IsQueueFamilyIndicesEqual(const VkImageCreateInfo &other_create_info) const {
return (create_info.queueFamilyIndexCount == other_create_info.queueFamilyIndexCount) &&
(create_info.queueFamilyIndexCount == 0 ||
memcmp(create_info.pQueueFamilyIndices, other_create_info.pQueueFamilyIndices,
create_info.queueFamilyIndexCount * sizeof(create_info.pQueueFamilyIndices[0])) == 0);
}
~Image() {
if (!Destroyed()) {
Destroy();
}
}
void SetSwapchain(std::shared_ptr<vvl::Swapchain> &swapchain, uint32_t swapchain_index);
void Destroy() override;
// Returns the effective extent of the provided subresource, adjusted for mip level and array depth.
VkExtent3D GetEffectiveSubresourceExtent(const VkImageSubresourceLayers &sub) const;
VkExtent3D GetEffectiveSubresourceExtent(const VkImageSubresource &sub) const;
VkExtent3D GetEffectiveSubresourceExtent(const VkImageSubresourceRange &range) const;
std::string DescribeSubresourceLayers(const VkImageSubresourceLayers &subresource) const;
VkImageSubresourceRange NormalizeSubresourceRange(const VkImageSubresourceRange &range) const;
uint32_t NormalizeLayerCount(const VkImageSubresourceLayers &resource) const;
void SetInitialLayoutMap();
void SetImageLayout(const VkImageSubresourceRange &range, VkImageLayout layout);
// This function is only used for comparing Imported External Dedicated Memory
bool CompareCreateInfo(const Image &other) const;
template <typename UnaryPredicate>
bool AnyAliasBindingOf(const StateObject::NodeMap &bindings, const UnaryPredicate &pred) const {
for (auto &entry : bindings) {
if (entry.first.type == kVulkanObjectTypeImage) {
auto state_object = entry.second.lock();
if (state_object) {
auto other_image = static_cast<Image *>(state_object.get());
if ((other_image != this) && other_image->IsCompatibleAliasing(this)) {
if (pred(*other_image)) return true;
}
}
}
}
return false;
}
template <typename UnaryPredicate>
bool AnyImageAliasOf(const UnaryPredicate &pred) const {
// Look for another aliasing image and
// ObjectBindings() is thread safe since returns by value, and once
// the weak_ptr is successfully locked, the other image state won't
// be freed out from under us.
for (auto const &memory_state : GetBoundMemoryStates()) {
if (AnyAliasBindingOf(memory_state->ObjectBindings(), pred)) return true;
}
return false;
}
template <typename RegionType>
VkDeviceSize GetBufferSizeFromCopyImage(const RegionType ®ion) const;
protected:
void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) override;
private:
VkImageSubresourceRange MakeImageFullRange();
// Subresource encoder need to take into account that 3d image can have a separate layout
// per slice, if supported by the implementation. This adjusts the layout range so
// layouts map can address each slice.
VkImageSubresourceRange GetSubresourceEncoderRange(const DeviceState &device_state, const VkImageSubresourceRange &full_range);
std::variant<std::monostate, BindableNoMemoryTracker, BindableLinearMemoryTracker, BindableSparseMemoryTracker,
BindableMultiplanarMemoryTracker>
tracker_;
};
class ImageSubState {
public:
explicit ImageSubState(Image &img) : base(img) {}
ImageSubState(const ImageSubState &) = delete;
ImageSubState &operator=(const ImageSubState &) = delete;
virtual ~ImageSubState() {}
virtual void Destroy() {}
virtual void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) {}
Image &base;
};
// State for VkImageView objects.
// Parent -> child relationships in the object usage tree:
// ImageView [N] -> [1] vv::Image
class ImageView : public StateObject, public SubStateManager<ImageViewSubState> {
public:
const vku::safe_VkImageViewCreateInfo safe_create_info;
const VkImageViewCreateInfo &create_info;
std::shared_ptr<vvl::Image> image_state;
#ifdef VK_USE_PLATFORM_METAL_EXT
const bool metal_imageview_export;
#endif // VK_USE_PLATFORM_METAL_EXT
const bool is_depth_sliced;
const VkImageSubresourceRange normalized_subresource_range;
const subresource_adapter::RangeGenerator range_generator;
const VkSampleCountFlagBits samples;
const VkSamplerYcbcrConversion samplerConversion; // Handle of the ycbcr sampler conversion the image was created with, if any
const VkFilterCubicImageViewImageFormatPropertiesEXT filter_cubic_props;
const float min_lod;
const VkFormatFeatureFlags2KHR format_features;
const VkImageUsageFlags inherited_usage; // from spec #resources-image-inherited-usage
ImageView(const DeviceState &device_state, const std::shared_ptr<vvl::Image> &image_state, VkImageView handle,
const VkImageViewCreateInfo *ci, VkFormatFeatureFlags2KHR ff,
const VkFilterCubicImageViewImageFormatPropertiesEXT &cubic_props);
ImageView(const ImageView &rh_obj) = delete;
VkImageView VkHandle() const { return handle_.Cast<VkImageView>(); }
void LinkChildNodes() override {
// Connect child node(s), which cannot safely be done in the constructor.
image_state->AddParent(this);
}
virtual ~ImageView() {
if (!Destroyed()) {
Destroy();
}
}
bool OverlapSubresource(const ImageView &compare_view) const;
void Destroy() override;
void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) override;
uint32_t GetAttachmentLayerCount() const;
bool Invalid() const override { return Destroyed() || !image_state || image_state->Invalid(); }
private:
VkImageSubresourceRange NormalizeImageLayoutSubresourceRange(bool is_3d_slice_transition_allowed) const;
bool IsDepthSliced();
};
class ImageViewSubState {
public:
explicit ImageViewSubState(ImageView &view) : base(view) {}
ImageViewSubState(const ImageViewSubState &) = delete;
ImageViewSubState &operator=(const ImageViewSubState &) = delete;
virtual ~ImageViewSubState() {}
virtual void Destroy() {}
virtual void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) {}
ImageView &base;
};
} // namespace vvl
|