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
|
/* Copyright (c) 2015-2025 The Khronos Group Inc.
* Copyright (c) 2015-2025 Valve Corporation
* Copyright (c) 2015-2025 LunarG, Inc.
* Copyright (C) 2015-2024 Google Inc.
* Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved.
*
* 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 "state_tracker/state_object.h"
#include <string>
#include <vulkan/utility/vk_safe_struct.hpp>
// Note: some of the types in this header are needed by both the DescriptorSet and Pipeline
// state objects. It is helpful to have a separate header to avoid circular #include madness.
struct DescriptorSlot {
uint32_t set;
uint32_t binding;
DescriptorSlot(uint32_t s, uint32_t b) : set(s), binding(b) {}
bool operator==(const DescriptorSlot &other) const;
size_t Hash() const;
};
struct SamplerUsedByImage {
DescriptorSlot sampler_slot;
uint32_t sampler_index;
bool operator==(const SamplerUsedByImage &other) const;
size_t Hash() const;
};
namespace std {
template <>
struct hash<DescriptorSlot> {
size_t operator()(DescriptorSlot slot) const noexcept { return slot.Hash(); }
};
template <>
struct hash<SamplerUsedByImage> {
size_t operator()(SamplerUsedByImage s) const noexcept { return s.Hash(); }
};
} // namespace std
namespace vvl {
class SamplerSubState;
class Sampler : public StateObject, public SubStateManager<SamplerSubState> {
public:
const vku::safe_VkSamplerCreateInfo safe_create_info;
const VkSamplerCreateInfo &create_info;
// VK_NULL_HANDLE if it doesn't have one chained in the pNext at creation time
const VkSamplerYcbcrConversion sampler_conversion;
const VkSamplerCustomBorderColorCreateInfoEXT customCreateInfo;
Sampler(const VkSampler handle, const VkSamplerCreateInfo *pCreateInfo);
void Destroy() override;
void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) override;
VkSampler VkHandle() const { return handle_.Cast<VkSampler>(); }
private:
static inline VkSamplerYcbcrConversion GetConversion(const VkSamplerCreateInfo *pCreateInfo) {
auto *conversion_info = vku::FindStructInPNextChain<VkSamplerYcbcrConversionInfo>(pCreateInfo->pNext);
return conversion_info ? conversion_info->conversion : VK_NULL_HANDLE;
}
static inline VkSamplerCustomBorderColorCreateInfoEXT GetCustomCreateInfo(const VkSamplerCreateInfo *pCreateInfo) {
VkSamplerCustomBorderColorCreateInfoEXT result{};
auto cbci = vku::FindStructInPNextChain<VkSamplerCustomBorderColorCreateInfoEXT>(pCreateInfo->pNext);
if (cbci) result = *cbci;
return result;
}
};
class SamplerSubState {
public:
explicit SamplerSubState(Sampler &obj) : base(obj) {}
SamplerSubState(const SamplerSubState &) = delete;
SamplerSubState &operator=(const SamplerSubState &) = delete;
virtual ~SamplerSubState() {}
virtual void Destroy() {}
virtual void NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) {}
Sampler &base;
};
inline void Sampler::Destroy() {
for (auto &item : sub_states_) {
item.second->Destroy();
}
StateObject::Destroy();
}
inline void Sampler::NotifyInvalidate(const StateObject::NodeList &invalid_nodes, bool unlink) {
for (auto &item : sub_states_) {
item.second->NotifyInvalidate(invalid_nodes, unlink);
}
StateObject::NotifyInvalidate(invalid_nodes, unlink);
}
class SamplerYcbcrConversion : public StateObject {
public:
const vku::safe_VkSamplerYcbcrConversionCreateInfo safe_create_info;
const VkSamplerYcbcrConversionCreateInfo &create_info;
const VkFormatFeatureFlags2 format_features;
const uint64_t external_format;
SamplerYcbcrConversion(VkSamplerYcbcrConversion handle, const VkSamplerYcbcrConversionCreateInfo *pCreateInfo,
VkFormatFeatureFlags2 features);
VkSamplerYcbcrConversion VkHandle() const { return handle_.Cast<VkSamplerYcbcrConversion>(); }
bool operator!=(const SamplerYcbcrConversion &rhs) const;
std::string Describe() const;
};
} // namespace vvl
|