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

This commit is contained in:
Glenn Watson 2014-09-29 07:42:45 +10:00
parent 6184c13f95
commit c74798bb6b

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("", "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<Opts> {
TypedSize2D(res[0], res[1])
}
None => {
TypedSize2D(800, 600)
TypedSize2D(1280, 1024)
}
};