init
This commit is contained in:
@@ -0,0 +1,151 @@
|
||||
/* Copyright (c) 2022-2025, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include "rendering/hpp_render_target.h"
|
||||
#include "common/hpp_vk_common.h"
|
||||
#include "core/device.h"
|
||||
#include "core/hpp_image_view.h"
|
||||
#include "core/hpp_physical_device.h"
|
||||
|
||||
namespace vkb
|
||||
{
|
||||
namespace rendering
|
||||
{
|
||||
const HPPRenderTarget::CreateFunc HPPRenderTarget::DEFAULT_CREATE_FUNC = [](core::HPPImage &&swapchain_image) -> std::unique_ptr<HPPRenderTarget> {
|
||||
vk::Format depth_format = common::get_suitable_depth_format(swapchain_image.get_device().get_gpu().get_handle());
|
||||
|
||||
core::HPPImage depth_image{swapchain_image.get_device(), swapchain_image.get_extent(),
|
||||
depth_format,
|
||||
vk::ImageUsageFlagBits::eDepthStencilAttachment | vk::ImageUsageFlagBits::eTransientAttachment,
|
||||
VMA_MEMORY_USAGE_GPU_ONLY};
|
||||
|
||||
std::vector<core::HPPImage> images;
|
||||
images.push_back(std::move(swapchain_image));
|
||||
images.push_back(std::move(depth_image));
|
||||
|
||||
return std::make_unique<HPPRenderTarget>(std::move(images));
|
||||
};
|
||||
|
||||
HPPRenderTarget::HPPRenderTarget(std::vector<core::HPPImage> &&images_) :
|
||||
device{images_.back().get_device()},
|
||||
images{std::move(images_)}
|
||||
{
|
||||
assert(!images.empty() && "Should specify at least 1 image");
|
||||
|
||||
// check that every image is 2D
|
||||
auto it = std::ranges::find_if(images, [](core::HPPImage const &image) { return image.get_type() != vk::ImageType::e2D; });
|
||||
if (it != images.end())
|
||||
{
|
||||
throw VulkanException{VK_ERROR_INITIALIZATION_FAILED, "Image type is not 2D"};
|
||||
}
|
||||
|
||||
extent.width = images.front().get_extent().width;
|
||||
extent.height = images.front().get_extent().height;
|
||||
|
||||
// check that every image has the same extent
|
||||
it = std::find_if(std::next(images.begin()),
|
||||
images.end(),
|
||||
[this](core::HPPImage const &image) { return (extent.width != image.get_extent().width) || (extent.height != image.get_extent().height); });
|
||||
if (it != images.end())
|
||||
{
|
||||
throw VulkanException{VK_ERROR_INITIALIZATION_FAILED, "Extent size is not unique"};
|
||||
}
|
||||
|
||||
for (auto &image : images)
|
||||
{
|
||||
views.emplace_back(image, vk::ImageViewType::e2D);
|
||||
attachments.emplace_back(HPPAttachment{image.get_format(), image.get_sample_count(), image.get_usage()});
|
||||
}
|
||||
}
|
||||
|
||||
HPPRenderTarget::HPPRenderTarget(std::vector<core::HPPImageView> &&image_views) :
|
||||
device{image_views.back().get_image().get_device()},
|
||||
views{std::move(image_views)}
|
||||
{
|
||||
assert(!views.empty() && "Should specify at least 1 image view");
|
||||
|
||||
const uint32_t mip_level = views.front().get_subresource_range().baseMipLevel;
|
||||
extent.width = views.front().get_image().get_extent().width >> mip_level;
|
||||
extent.height = views.front().get_image().get_extent().height >> mip_level;
|
||||
|
||||
// check that every image view has the same extent
|
||||
auto it = std::find_if(std::next(views.begin()),
|
||||
views.end(),
|
||||
[this](core::HPPImageView const &image_view) {
|
||||
const uint32_t mip_level = image_view.get_subresource_range().baseMipLevel;
|
||||
return (extent.width != image_view.get_image().get_extent().width >> mip_level) ||
|
||||
(extent.height != image_view.get_image().get_extent().height >> mip_level);
|
||||
});
|
||||
if (it != views.end())
|
||||
{
|
||||
throw VulkanException{VK_ERROR_INITIALIZATION_FAILED, "Extent size is not unique"};
|
||||
}
|
||||
|
||||
for (auto &view : views)
|
||||
{
|
||||
const auto &image = view.get_image();
|
||||
attachments.emplace_back(HPPAttachment{image.get_format(), image.get_sample_count(), image.get_usage()});
|
||||
}
|
||||
}
|
||||
|
||||
const vk::Extent2D &HPPRenderTarget::get_extent() const
|
||||
{
|
||||
return extent;
|
||||
}
|
||||
|
||||
const std::vector<core::HPPImageView> &HPPRenderTarget::get_views() const
|
||||
{
|
||||
return views;
|
||||
}
|
||||
|
||||
const std::vector<HPPAttachment> &HPPRenderTarget::get_attachments() const
|
||||
{
|
||||
return attachments;
|
||||
}
|
||||
|
||||
void HPPRenderTarget::set_input_attachments(std::vector<uint32_t> &input)
|
||||
{
|
||||
input_attachments = input;
|
||||
}
|
||||
|
||||
const std::vector<uint32_t> &HPPRenderTarget::get_input_attachments() const
|
||||
{
|
||||
return input_attachments;
|
||||
}
|
||||
|
||||
void HPPRenderTarget::set_output_attachments(std::vector<uint32_t> &output)
|
||||
{
|
||||
output_attachments = output;
|
||||
}
|
||||
|
||||
const std::vector<uint32_t> &HPPRenderTarget::get_output_attachments() const
|
||||
{
|
||||
return output_attachments;
|
||||
}
|
||||
|
||||
void HPPRenderTarget::set_layout(uint32_t attachment, vk::ImageLayout layout)
|
||||
{
|
||||
attachments[attachment].initial_layout = layout;
|
||||
}
|
||||
|
||||
vk::ImageLayout HPPRenderTarget::get_layout(uint32_t attachment) const
|
||||
{
|
||||
return attachments[attachment].initial_layout;
|
||||
}
|
||||
|
||||
} // namespace rendering
|
||||
} // namespace vkb
|
||||
Reference in New Issue
Block a user