Revert "Set default resolution to 1280x1024 now that reftests render to FBO."

This reverts commit c74798bb6b.
This commit is contained in:
Glenn Watson 2014-09-29 10:10:37 +10:00
parent 276ca5f2e9
commit e237519fdd

View file

@ -125,7 +125,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option<Opts> {
getopts::optflag("", "disable-text-aa", "Disable antialiasing for text rendering."), getopts::optflag("", "disable-text-aa", "Disable antialiasing for text rendering."),
getopts::optflag("", "trace-layout", "Write layout trace to external file for debugging."), getopts::optflag("", "trace-layout", "Write layout trace to external file for debugging."),
getopts::optflag("", "devtools", "Start remote devtools server"), getopts::optflag("", "devtools", "Start remote devtools server"),
getopts::optopt("", "resolution", "Set window resolution.", "1280x1024"), getopts::optopt("", "resolution", "Set window resolution.", "800x600"),
getopts::optflag("h", "help", "Print this message") getopts::optflag("h", "help", "Print this message")
); );
@ -213,7 +213,7 @@ pub fn from_cmdline_args(args: &[String]) -> Option<Opts> {
TypedSize2D(res[0], res[1]) TypedSize2D(res[0], res[1])
} }
None => { None => {
TypedSize2D(1280, 1024) TypedSize2D(800, 600)
} }
}; };