Foray Library
rapid prototyping framework for crossplatform development of vulkan hardware ray tracing applications
Loading...
Searching...
No Matches
foray_swapchainimageinfo.hpp
Go to the documentation of this file.
1#pragma once
2#include "../foray_vulkan.hpp"
3
4namespace foray::core {
7 {
9 std::string Name = "";
11 VkImage Image = nullptr;
13 VkImageView ImageView = nullptr;
14
15 inline operator VkImage() const { return Image; }
16 inline operator VkImageView() const { return ImageView; }
17 };
18} // namespace foray::core
Definition foray_commandbuffer.hpp:6
Collects information for a swapchain image.
Definition foray_swapchainimageinfo.hpp:7
VkImage Image
VkImage.
Definition foray_swapchainimageinfo.hpp:11
VkImageView ImageView
VkImageView.
Definition foray_swapchainimageinfo.hpp:13
std::string Name
Debug name given.
Definition foray_swapchainimageinfo.hpp:9