#include #include #include #include #include #include #include using namespace std; namespace kms { ExtFramebuffer::ExtFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format, vector handles, vector pitches, vector offsets) : Framebuffer(card, width, height) { m_format = format; const PixelFormatInfo& format_info = get_pixel_format_info(format); m_num_planes = format_info.num_planes; for (int i = 0; i < format_info.num_planes; ++i) { FramebufferPlane& plane = m_planes[i]; plane.handle = handles[i]; plane.stride = pitches[i]; plane.offset = offsets[i]; plane.size = plane.stride * height; plane.map = 0; } uint32_t id; int r = drmModeAddFB2(card.fd(), width, height, (uint32_t)format, handles.data(), pitches.data(), offsets.data(), &id, 0); if (r) throw std::invalid_argument(string("Failed to create ExtFramebuffer: ") + strerror(r)); set_id(id); } ExtFramebuffer::~ExtFramebuffer() { drmModeRmFB(card().fd(), id()); } }