From ec11751d5d3d0122262c1cfc6cf299ab37c705a6 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 14 Oct 2015 17:27:34 +0300 Subject: ExtFramebuffer: add alternative constructor --- libkms++/extframebuffer.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libkms++/extframebuffer.h') diff --git a/libkms++/extframebuffer.h b/libkms++/extframebuffer.h index cc0863a..82909c5 100644 --- a/libkms++/extframebuffer.h +++ b/libkms++/extframebuffer.h @@ -1,6 +1,7 @@ #pragma once #include "framebuffer.h" +#include "pixelformats.h" namespace kms { @@ -9,6 +10,8 @@ class ExtFramebuffer : public Framebuffer { public: ExtFramebuffer(Card& card, uint32_t width, uint32_t height, uint32_t depth, uint32_t bpp, uint32_t stride, uint32_t handle); + ExtFramebuffer(Card& card, uint32_t width, uint32_t height, PixelFormat format, + uint32_t handles[4], uint32_t pitches[4], uint32_t offsets[4]); virtual ~ExtFramebuffer(); void print_short() const; -- cgit v1.2.3