testdisplay: Move the code sanitizing depth into main()
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 3 Sep 2013 13:57:31 +0000 (14:57 +0100)
committerDamien Lespiau <damien.lespiau@intel.com>
Mon, 30 Sep 2013 17:04:21 +0000 (18:04 +0100)
It'll be shared by the set_mode() and set_3d_mode() functions.

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
tests/testdisplay.c

index 6c39b68..c3a0d04 100644 (file)
@@ -334,13 +334,6 @@ set_mode(struct connector *c)
        unsigned int fb_id = 0;
        int j, test_mode_num;
 
-       if (depth <= 8)
-               bpp = 8;
-       else if (depth > 8 && depth <= 16)
-               bpp = 16;
-       else if (depth > 16 && depth <= 32)
-               bpp = 32;
-
        test_mode_num = 1;
        if (force_mode){
                memcpy( &c->mode, &force_timing, sizeof(force_timing));
@@ -585,6 +578,14 @@ int main(int argc, char **argv)
                        break;
                }
        }
+
+       if (depth <= 8)
+               bpp = 8;
+       else if (depth <= 16)
+               bpp = 16;
+       else if (depth <= 32)
+               bpp = 32;
+
        if (!test_all_modes && !force_mode && !dump_info &&
            !test_preferred_mode && specified_mode_num == -1)
                test_all_modes = 1;