From: Alan Hourihane Date: Sun, 17 Aug 2008 18:13:17 +0000 (+0100) Subject: choose a 1024x768 resolution X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6db08a91be3203222cda21012791659483b4e5e;p=mesa.git choose a 1024x768 resolution --- diff --git a/progs/egl/egltri.c b/progs/egl/egltri.c index 78c67939b28..43190ba7e17 100644 --- a/progs/egl/egltri.c +++ b/progs/egl/egltri.c @@ -201,7 +201,7 @@ int main(int argc, char *argv[]) eglGetModeAttribMESA(d, mode[i], EGL_WIDTH, &w); eglGetModeAttribMESA(d, mode[i], EGL_HEIGHT, &h); printf("%3d: %d x %d\n", i, w, h); - if (w > width && h > height && w <= 1280 && h <= 1024) { + if (w > width && h > height && w <= 1024 && h <= 768) { width = w; height = h; chosenMode = i;