13 lines
235 B
C++
13 lines
235 B
C++
#ifndef __VK_FRAMEBUFFER_HPP
|
|
#define __VK_FRAMEBUFFER_HPP
|
|
|
|
#include "./object.hpp"
|
|
|
|
namespace vk {
|
|
struct framebuffer : public owned<framebuffer,device> {
|
|
VkExtent2D area_granularity (const device&) const;
|
|
};
|
|
}
|
|
|
|
#endif
|