From c74798bb6bcb98d2d6af998e2ab0f08e79097147 Mon Sep 17 00:00:00 2001 From: Glenn Watson Date: Mon, 29 Sep 2014 07:42:45 +1000 Subject: [PATCH] Set default resolution to 1280x1024 now that reftests render to FBO. --- components/util/opts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/util/opts.rs b/components/util/opts.rs index 677adba2592..57e7b974504 100644 --- a/components/util/opts.rs +++ b/components/util/opts.rs @@ -125,7 +125,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option { getopts::optflag("", "disable-text-aa", "Disable antialiasing for text rendering."), getopts::optflag("", "trace-layout", "Write layout trace to external file for debugging."), getopts::optflag("", "devtools", "Start remote devtools server"), - getopts::optopt("", "resolution", "Set window resolution.", "800x600"), + getopts::optopt("", "resolution", "Set window resolution.", "1280x1024"), getopts::optflag("h", "help", "Print this message") ); @@ -213,7 +213,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option { TypedSize2D(res[0], res[1]) } None => { - TypedSize2D(800, 600) + TypedSize2D(1280, 1024) } };