From 2e29af9f076e32a9971046acd42fde7b7eec1e68 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 9 Mar 2016 10:55:50 +0200 Subject: kmsview: support multiple planes --- tests/kmsview.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/kmsview.cpp b/tests/kmsview.cpp index 7bd67a4..07dc09a 100644 --- a/tests/kmsview.cpp +++ b/tests/kmsview.cpp @@ -11,7 +11,8 @@ using namespace kms; static void read_frame(ifstream& is, DumbFramebuffer* fb, Crtc* crtc, Plane* plane) { - is.read((char*)fb->map(0), fb->size(0)); + for (unsigned i = 0; i < fb->num_planes(); ++i) + is.read((char*)fb->map(i), fb->size(i)); int r = crtc->set_plane(plane, *fb, 0, 0, fb->width(), fb->height(), @@ -65,7 +66,11 @@ int main(int argc, char** argv) FAIL_IF(!plane, "available plane not found"); - unsigned num_frames = fsize / fb->size(0); + unsigned frame_size = 0; + for (unsigned i = 0; i < fb->num_planes(); ++i) + frame_size += fb->size(i); + + unsigned num_frames = fsize / frame_size; printf("file size %u, frames %u\n", fsize, num_frames); for (unsigned i = 0; i < num_frames; ++i) { -- cgit v1.2.3