#ifndef __VK_FRAMEBUFFER_HPP #define __VK_FRAMEBUFFER_HPP #include "./object.hpp" namespace vk { struct framebuffer : public owned { VkExtent2D area_granularity (const device&) const; }; } #endif