1
0
forked from 0ad/0ad
0ad/source/lib/sysdep/x.cpp

36 lines
1.1 KiB
C++
Raw Normal View History

// X Window System-specific code
// Copyright (c) 2004 Jan Wassenberg
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// Contact info:
// Jan.Wassenberg@stud.uni-karlsruhe.de
// http://www.stud.uni-karlsruhe.de/~urkt/
#ifdef HAVE_X
#include <Xlib.h>
// useful for choosing a video mode. not called by detect().
2004-03-03 16:16:20 +01:00
// if we fail, don't change the outputs (assumed initialized to defaults)
void get_cur_resolution(int& xres, int& yres)
{
2004-03-03 16:16:20 +01:00
Display* disp = XOpenDisplay(0);
if(!disp)
return;
int screen = XDefaultScreen(disp);
xres = XDisplayWidth (disp, screen);
yres = XDisplayHeight(disp, screen);
XCloseDisplay(disp);
}
#endif // #ifdef HAVE_X