mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 17:40:40 -05:00
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)
This commit is contained in:
parent
73b95dd451
commit
666d0e100c
@ -1046,20 +1046,25 @@ main (int argc, char **argv)
|
|||||||
if (!compositor.cogl_context)
|
if (!compositor.cogl_context)
|
||||||
g_error ("Failed to create a Cogl context: %s\n", error->message);
|
g_error ("Failed to create a Cogl context: %s\n", error->message);
|
||||||
|
|
||||||
compositor.virtual_width = 640;
|
compositor.virtual_width = 800;
|
||||||
compositor.virtual_height = 480;
|
compositor.virtual_height = 600;
|
||||||
|
|
||||||
if (option_multiple_outputs)
|
if (option_multiple_outputs)
|
||||||
{
|
{
|
||||||
|
int hw = compositor.virtual_width / 2;
|
||||||
|
int hh = compositor.virtual_height / 2;
|
||||||
/* Emulate compositing with multiple monitors... */
|
/* Emulate compositing with multiple monitors... */
|
||||||
cogland_compositor_create_output (&compositor, 0, 0, 320, 240);
|
cogland_compositor_create_output (&compositor, 0, 0, hw, hh);
|
||||||
cogland_compositor_create_output (&compositor, 320, 0, 320, 240);
|
cogland_compositor_create_output (&compositor, hw, 0, hw, hh);
|
||||||
cogland_compositor_create_output (&compositor, 0, 240, 320, 240);
|
cogland_compositor_create_output (&compositor, 0, hh, hw, hh);
|
||||||
cogland_compositor_create_output (&compositor, 320, 240, 320, 240);
|
cogland_compositor_create_output (&compositor, hw, hh, hw, hh);
|
||||||
}
|
}
|
||||||
else
|
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,
|
if (wl_display_add_global (compositor.wayland_display, &wl_shell_interface,
|
||||||
|
Loading…
Reference in New Issue
Block a user