libcruft-vk/framebuffer.hpp

13 lines
235 B
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#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