[cogl] cogland: Increase the display size to 800x600
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl] cogland: Increase the display size to 800x600
- Date: Fri, 22 Mar 2013 00:01:37 +0000 (UTC)
commit 835626e220137765df5acf7419036218e3fc7c97
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>
examples/cogland.c | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
---
diff --git a/examples/cogland.c b/examples/cogland.c
index 90055d6..98e0efe 100644
--- a/examples/cogland.c
+++ b/examples/cogland.c
@@ -1041,20 +1041,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]