
.. _program_listing_file_Src_GraphicsEngineVulkan_renderer_SwapChainDetails.hpp:

Program Listing for File SwapChainDetails.hpp
=============================================

|exhale_lsh| :ref:`Return to documentation for file <file_Src_GraphicsEngineVulkan_renderer_SwapChainDetails.hpp>` (``Src/GraphicsEngineVulkan/renderer/SwapChainDetails.hpp``)

.. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS

.. code-block:: cpp

   #pragma once
   
   #include <vector>
   #include <vulkan/vulkan.hpp>
   
   namespace Kataglyphis::VulkanRendererInternals {
   struct SwapChainDetails
   {
       vk::SurfaceCapabilitiesKHR surface_capabilities;
       std::vector<vk::SurfaceFormatKHR> formats;
       std::vector<vk::PresentModeKHR> presentation_mode;
   };
   }// namespace Kataglyphis::VulkanRendererInternals
