sandbox
Loading...
Searching...
No Matches
depth_image.hpp
1#ifndef LIBSBX_GRAPHICS_IMAGES_DEPTH_IMAGE_HPP_
2#define LIBSBX_GRAPHICS_IMAGES_DEPTH_IMAGE_HPP_
3
4#include <libsbx/graphics/images/image.hpp>
5
6namespace sbx::graphics {
7
8class depth_image : public image {
9
10public:
11
12 depth_image(const math::vector2u& extent, VkSampleCountFlagBits samples = VK_SAMPLE_COUNT_1_BIT);
13
14 ~depth_image() override = default;
15
16}; // class depth_image
17
18} // sbx::graphics
19
20#endif // LIBSBX_GRAPHICS_IMAGES_DEPTH_IMAGE_HPP_
Definition: depth_image.hpp:8
Definition: image.hpp:18
A vector in two-dimensional space.
Definition: vector2.hpp:27