[cogl/cogl-1.14] cogland: Increase the display size to 800x600



commit 666d0e100c6aad7e7639d5f2e380aeece9ee9180
Author: Neil Roberts <neil linux intel com>
Date:   Thu Mar 21 14:00:03 2013 +0000

    cogland: Increase the display size to 800x600
    
    The previous display size of 640x480 was a bit small to test with.
    
    Reviewed-by: Robert Bragg <robert linux intel com>
    
    (cherry picked from commit 835626e220137765df5acf7419036218e3fc7c97)

 examples/cogland.c |   19 ++++++++++++-------
 1 files changed, 12 insertions(+), 7 deletions(-)
---
diff --git a/examples/cogland.c b/examples/cogland.c
index 029da0a..64fd6af 100644
--- a/examples/cogland.c
+++ b/examples/cogland.c
@@ -1046,20 +1046,25 @@ main (int argc, char **argv)
   if (!compositor.cogl_context)
     g_error ("Failed to create a Cogl context: %s\n", error->message);
 
-  compositor.virtual_width = 640;
-  compositor.virtual_height = 480;
+  compositor.virtual_width = 800;
+  compositor.virtual_height = 600;
 
   if (option_multiple_outputs)
     {
+      int hw = compositor.virtual_width / 2;
+      int hh = compositor.virtual_height / 2;
       /* Emulate compositing with multiple monitors... */
-      cogland_compositor_create_output (&compositor, 0, 0, 320, 240);
-      cogland_compositor_create_output (&compositor, 320, 0, 320, 240);
-      cogland_compositor_create_output (&compositor, 0, 240, 320, 240);
-      cogland_compositor_create_output (&compositor, 320, 240, 320, 240);
+      cogland_compositor_create_output (&compositor, 0, 0, hw, hh);
+      cogland_compositor_create_output (&compositor, hw, 0, hw, hh);
+      cogland_compositor_create_output (&compositor, 0, hh, hw, hh);
+      cogland_compositor_create_output (&compositor, hw, hh, hw, hh);
     }
   else
     {
-      cogland_compositor_create_output (&compositor, 0, 0, 640, 480);
+      cogland_compositor_create_output (&compositor,
+                                        0, 0,
+                                        compositor.virtual_width,
+                                        compositor.virtual_height);
     }
 
   if (wl_display_add_global (compositor.wayland_display, &wl_shell_interface,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]