13#ifndef _CS237_APPLICATION_HPP_
14#define _CS237_APPLICATION_HPP_
17#error "cs237-application.hpp should not be included directly"
22namespace __detail {
class TextureBase; }
40 Application (std::vector<std::string>
const &args, std::string
const &
name =
"CS237 App");
45 virtual void run () = 0;
55 return (this->
_messages & vk::DebugUtilsMessageSeverityFlagBitsEXT::eVerbose)
56 == vk::DebugUtilsMessageSeverityFlagBitsEXT::eVerbose;
63 return vk::enumerateInstanceExtensionProperties(
nullptr);
71 return this->
_gpu.enumerateDeviceExtensionProperties();
78 return vk::enumerateInstanceLayerProperties();
104 vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm,
105 vk::SamplerAddressMode am, vk::BorderColor color)
113 vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm,
114 vk::SamplerAddressMode am1, vk::SamplerAddressMode am2,
115 vk::BorderColor color)
137 const vk::PhysicalDeviceProperties *
props ()
const
146 const vk::PhysicalDeviceLimits *
limits ()
const {
return &this->
props()->limits; }
149 const vk::PhysicalDeviceFeatures *
features ()
const
160 return this->
_gpu.getFormatProperties(fmt);
174 std::vector<vk::DescriptorSetLayout> descSets,
175 std::vector<vk::PushConstantRange> pcrs)
177 vk::PipelineLayoutCreateInfo layoutInfo(
182 return this->
_device.createPipelineLayout(layoutInfo);
190 vk::PipelineLayoutCreateInfo layoutInfo(
195 return this->
_device.createPipelineLayout(layoutInfo);
231 vk::PipelineVertexInputStateCreateInfo
const &vertexInfo,
232 vk::PrimitiveTopology prim,
234 vk::ArrayProxy<vk::Viewport>
const &viewports,
235 vk::ArrayProxy<vk::Rect2D>
const &scissors,
237 vk::PolygonMode polyMode,
238 vk::CullModeFlags cullMode,
240 vk::PipelineLayout layout,
241 vk::RenderPass renderPass,
243 vk::ArrayProxy<vk::DynamicState>
const &dynamic);
278 vk::PipelineVertexInputStateCreateInfo
const &vertexInfo,
279 vk::PrimitiveTopology prim,
280 vk::ArrayProxy<vk::Viewport>
const &viewports,
281 vk::ArrayProxy<vk::Rect2D>
const &scissors,
282 vk::PolygonMode polyMode,
283 vk::CullModeFlags cullMode,
285 vk::PipelineLayout layout,
286 vk::RenderPass renderPass,
288 vk::ArrayProxy<vk::DynamicState>
const &dynamic)
311 vk::CommandBufferAllocateInfo allocInfo(
313 vk::CommandBufferLevel::ePrimary,
316 return (this->
_device.allocateCommandBuffers(allocInfo))[0];
324 vk::CommandBufferBeginInfo beginInfo(
326 ? vk::CommandBufferUsageFlagBits::eOneTimeSubmit
327 : vk::CommandBufferUsageFlags());
328 cmdBuf.begin(beginInfo);
339 vk::CommandBuffer cmdBufs[1] = { cmdBuf };
340 vk::SubmitInfo submitInfo(
343 vk::ArrayProxyNoTemporaries<const vk::CommandBuffer>(1, cmdBufs),
358 template <
typename T>
408 int32_t
_findMemory (uint32_t reqTypeBits, vk::MemoryPropertyFlags reqProps)
const;
419 std::vector<vk::Format> candidates,
420 vk::ImageTiling tiling,
464 vk::ImageTiling tiling,
465 vk::ImageUsageFlags usage,
466 vk::ImageLayout layout,
467 uint32_t mipLvls = 1);
482 vk::ImageTiling tiling,
483 vk::ImageUsageFlags usage,
484 uint32_t mipLvls = 1)
487 wid, ht, format, tiling, usage,
488 vk::ImageLayout::eUndefined,
500 vk::Image image, vk::Format format, vk::ImageAspectFlags aspectFlags);
506 vk::ImageLayout oldLayout,
507 vk::ImageLayout newLayout);
526 void _copyBuffer (vk::Buffer dstBuf, vk::Buffer srcBuf,
size_t offset,
size_t size);
536 vk::Image dstImg, vk::Buffer srcBuf,
size_t size,
537 uint32_t wid, uint32_t ht=1, uint32_t depth=1);
Definition cs237-texture.hpp:21
the base class for applications
Definition cs237-application.hpp:25
void _createInstance()
A helper function to create and initialize the Vulkan instance used by the application.
std::vector< vk::ExtensionProperties > supportedDeviceExtensions()
Get the list of supported Vulkan device extensions for the selected physical device.
Definition cs237-application.hpp:69
vk::Device _device
the logical device that we are using to render
Definition cs237-application.hpp:380
vk::Format _depthStencilBufferFormat(bool depth, bool stencil)
A helper function to identify the best depth/stencil-buffer attachment format for the device.
void _createLogicalDevice()
A helper function to create the logical device during initialization.
void _getPhysicalDeviceFeatures() const
function that gets the physical-device features and caches the pointer in the _featuresCache field.
vk::PhysicalDeviceFeatures * _featuresCache
a cache of the physical device properties
Definition cs237-application.hpp:378
vk::DeviceMemory _allocBufferMemory(vk::Buffer buf, vk::MemoryPropertyFlags props)
A helper function for allocating and binding device memory for a buffer.
const vk::PhysicalDeviceLimits * limits() const
access function for the physical device limits
Definition cs237-application.hpp:146
void freeCommandBuf(vk::CommandBuffer &cmdBuf)
free the command buffer
Definition cs237-application.hpp:351
VkDebugUtilsMessengerEXT _debugMessenger
Definition cs237-application.hpp:540
void _getPhysicalDeviceProperties() const
function that gets the physical-device properties and caches the pointer in the _propsCache field.
static std::vector< vk::LayerProperties > supportedLayers()
Get the list of supported layers.
Definition cs237-application.hpp:76
Application(std::vector< std::string > const &args, std::string const &name="CS237 App")
constructor for application base class
vk::Buffer _createBuffer(size_t size, vk::BufferUsageFlags usage)
create a vk::Buffer object
void _copyBufferToImage(vk::Image dstImg, vk::Buffer srcBuf, size_t size, uint32_t wid, uint32_t ht=1, uint32_t depth=1)
copy data from a buffer to an image
std::string name() const
return the application name
Definition cs237-application.hpp:48
Queues< uint32_t > _qIdxs
the queue family indices
Definition cs237-application.hpp:381
bool verbose() const
is the program in verbose mode?
Definition cs237-application.hpp:53
vk::PipelineLayout createPipelineLayout(std::vector< vk::DescriptorSetLayout > descSets, std::vector< vk::PushConstantRange > pcrs)
Create a pipeline layout.
Definition cs237-application.hpp:173
vk::PipelineLayout createPipelineLayout(vk::DescriptorSetLayout descSet)
Create a pipeline layout for a single descriptor set.
Definition cs237-application.hpp:188
vk::CommandBuffer newCommandBuf()
create and initialize a command buffer
Definition cs237-application.hpp:309
vk::PhysicalDeviceProperties * _propsCache
Definition cs237-application.hpp:377
void _copyBuffer(vk::Buffer dstBuf, vk::Buffer srcBuf, size_t offset, size_t size)
copy data from one buffer to another using the GPU
vk::Pipeline createPipeline(cs237::Shaders *shaders, vk::PipelineVertexInputStateCreateInfo const &vertexInfo, vk::PrimitiveTopology prim, bool primRestart, vk::ArrayProxy< vk::Viewport > const &viewports, vk::ArrayProxy< vk::Rect2D > const &scissors, bool depthClamp, vk::PolygonMode polyMode, vk::CullModeFlags cullMode, vk::FrontFace front, vk::PipelineLayout layout, vk::RenderPass renderPass, uint32_t subPass, vk::ArrayProxy< vk::DynamicState > const &dynamic)
Allocate a graphics pipeline.
bool _debug
set when validation layers should be enabled
Definition cs237-application.hpp:374
const vk::PhysicalDeviceProperties * props() const
get the physical-device properties pointer
Definition cs237-application.hpp:137
void endCommands(vk::CommandBuffer cmdBuf)
end the recording of commands in the give command buffer
Definition cs237-application.hpp:333
vk::DebugUtilsMessageSeverityFlagsEXT _messages
set to the message severity level
Definition cs237-application.hpp:372
vk::PhysicalDevice _gpu
the graphics card (aka device) that we are using
Definition cs237-application.hpp:376
vk::Instance _instance
the Vulkan instance used by the application
Definition cs237-application.hpp:375
vk::Sampler createDepthSampler(SamplerInfo const &info)
Create a depth-texture sampler as specified.
void _transitionImageLayout(vk::Image image, vk::Format format, vk::ImageLayout oldLayout, vk::ImageLayout newLayout)
A helper function for changing the layout of an image.
vk::FormatProperties formatProps(vk::Format fmt) const
access function for the properties of an image format
Definition cs237-application.hpp:158
vk::Device device() const
get the logical device
Definition cs237-application.hpp:134
int32_t _findMemory(uint32_t reqTypeBits, vk::MemoryPropertyFlags reqProps) const
A helper function to identify the index of a device memory type that has the required type and proper...
void submitCommands(vk::CommandBuffer cmdBuf)
end the commands and submit the buffer to the graphics queue.
Definition cs237-application.hpp:337
std::string _name
the application name
Definition cs237-application.hpp:371
void beginCommands(vk::CommandBuffer cmdBuf, bool oneTime=false)
begin recording commands in the given command buffer
Definition cs237-application.hpp:322
vk::ImageView _createImageView(vk::Image image, vk::Format format, vk::ImageAspectFlags aspectFlags)
A helper function for creating a Vulkan image view object for an image.
void _selectDevice(vk::PhysicalDeviceFeatures *reqFeatures=nullptr)
A helper function to select the GPU to use.
vk::Pipeline createPipeline(cs237::Shaders *shaders, vk::PipelineVertexInputStateCreateInfo const &vertexInfo, vk::PrimitiveTopology prim, vk::ArrayProxy< vk::Viewport > const &viewports, vk::ArrayProxy< vk::Rect2D > const &scissors, vk::PolygonMode polyMode, vk::CullModeFlags cullMode, vk::FrontFace front, vk::PipelineLayout layout, vk::RenderPass renderPass, uint32_t subPass, vk::ArrayProxy< vk::DynamicState > const &dynamic)
Allocate a graphics pipeline using common defaults.
Definition cs237-application.hpp:276
const vk::PhysicalDeviceFeatures * features() const
access function for the physical device features
Definition cs237-application.hpp:149
Queues< vk::Queue > _queues
the device queues that we are using
Definition cs237-application.hpp:382
virtual void run()=0
main function for running the application
bool debug() const
is the program in debug mode?
Definition cs237-application.hpp:51
vk::CommandPool _cmdPool
pool for allocating command buffers
Definition cs237-application.hpp:383
vk::Sampler createSampler(SamplerInfo const &info)
Create a texture sampler as specified.
vk::Image _createImage(uint32_t wid, uint32_t ht, vk::Format format, vk::ImageTiling tiling, vk::ImageUsageFlags usage, uint32_t mipLvls=1)
A helper function for creating a Vulkan image that can be used for textures or depth buffers.
Definition cs237-application.hpp:478
void _initCommandPool()
allocate the command pool for the application
vk::Image _createImage(uint32_t wid, uint32_t ht, vk::Format format, vk::ImageTiling tiling, vk::ImageUsageFlags usage, vk::ImageLayout layout, uint32_t mipLvls=1)
A helper function for creating a Vulkan image that can be used for textures or depth buffers.
static std::vector< vk::ExtensionProperties > supportedExtensions()
Get the list of supported Vulkan instance extensions.
Definition cs237-application.hpp:61
vk::Format _findBestFormat(std::vector< vk::Format > candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features)
A helper function to identify the best image format supported by the device from an ordered list of c...
bool _getQIndices(vk::PhysicalDevice dev)
A helper function to identify the queue-family indices for the physical device that we are using.
vk::DeviceMemory _allocImageMemory(vk::Image img, vk::MemoryPropertyFlags props)
A helper function for allocating and binding device memory for an image.
A base class for buffer objects of all kinds.
Definition cs237-buffer.hpp:23
This class is a wrapper around the.
Definition cs237-depth-buffer.hpp:23
wrapper around Vulkan memory objects
Definition cs237-memory-obj.hpp:23
Definition cs237-shader.hpp:25
Definition cs237-texture.hpp:72
Definition cs237-texture.hpp:83
abstract base class for simple GLFW windows used to view buffers, etc.
Definition cs237-window.hpp:58
Definition cs237-aabb.hpp:22
information about queue families
Definition cs237-application.hpp:359
T present
the queue family that supports presentation
Definition cs237-application.hpp:361
T graphics
the queue family that supports graphics
Definition cs237-application.hpp:360
Definition cs237-application.hpp:84
vk::SamplerAddressMode addressModeU
Definition cs237-application.hpp:88
SamplerInfo(vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am1, vk::SamplerAddressMode am2, vk::BorderColor color)
sampler info for 2D texture
Definition cs237-application.hpp:112
vk::SamplerMipmapMode mipmapMode
Definition cs237-application.hpp:87
vk::BorderColor borderColor
Definition cs237-application.hpp:91
vk::SamplerAddressMode addressModeW
Definition cs237-application.hpp:90
SamplerInfo(vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am, vk::BorderColor color)
sampler info for 1D texture
Definition cs237-application.hpp:103
vk::Filter magFilter
Definition cs237-application.hpp:85
SamplerInfo()
Definition cs237-application.hpp:93
vk::SamplerAddressMode addressModeV
Definition cs237-application.hpp:89
vk::Filter minFilter
Definition cs237-application.hpp:86
Definition cs237-application.hpp:365
std::vector< vk::SurfaceFormatKHR > formats
Definition cs237-application.hpp:367
vk::SurfaceCapabilitiesKHR capabilities
Definition cs237-application.hpp:366
std::vector< vk::PresentModeKHR > presentModes
Definition cs237-application.hpp:368