]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android/external-libkmsxx.git/commitdiff
kmsview: support multiple planes
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 9 Mar 2016 08:55:50 +0000 (10:55 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 11 Mar 2016 10:45:10 +0000 (12:45 +0200)
tests/kmsview.cpp

index 7bd67a420c573a29b434e6cd436ea82efcaeb6d0..07dc09aea33a54d7e36a859fd0062ae70618393c 100644 (file)
@@ -11,7 +11,8 @@ using namespace kms;
 
 static void read_frame(ifstream& is, DumbFramebuffer* fb, Crtc* crtc, Plane* plane)
 {
 
 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(),
 
        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");
 
 
        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) {
        printf("file size %u, frames %u\n", fsize, num_frames);
 
        for (unsigned i = 0; i < num_frames; ++i) {