Descent3/lib/lnxscreenmode.h
2024-04-16 12:56:40 -06:00

81 lines
1.9 KiB
C++

/*
* $Logfile: /DescentIII/Main/renderer/lnxscreenmode.h $
* $Revision: 1.3 $
* $Date: 2004/02/09 04:14:52 $
* $Author: kevinb $
*
*
*
* $Log: lnxscreenmode.h,v $
* Revision 1.3 2004/02/09 04:14:52 kevinb
* Added newlines to all headers to reduce number of warnings printed
*
* Made some small changes to get everything compiling.
*
* All Ready to merge the 1.5 tree.
*
* Revision 1.2 2000/04/28 20:25:51 icculus
* Updates, cleanups, and SDLification.
*
* Revision 1.1.1.1 2000/04/18 00:00:49 icculus
* initial checkin
*
*
* 3 9/06/99 9:21p Jeff
* lock video mode switching, don't set viewport when restoring (causing a
* bunch of screen garbage)
*
* 2 9/05/99 9:41p Jeff
* first checkin of Linux Screen manager
*
* $NoKeywords: $
*/
#ifndef __LNXVIDEOMODE_H__
#define __LNXVIDEOMODE_H__
#include "linux/linux_fix.h"
//#include "linux/dyna_xwin.h"
//#include <X11/extensions/xf86vmode.h>
#include <SDL.h>
#define MODE_OK 0
#define MODE_HSYNC 1 /* hsync out of range */
#define MODE_VSYNC 2 /* vsync out of range */
#define MODE_BAD 255 /* unspecified reason */
class CLnxVideoModes {
public:
CLnxVideoModes();
~CLnxVideoModes();
bool Init(void); // Display *dpy,int screen);
void RestoreVideoMode(void);
// bool QueryExtension(Display *dpy);
// void GetModeLine(Display *dpy,int screen,int *dotclock,XF86VidModeModeLine *modeline);
bool SwitchResolution(int width, int height);
void Lock(bool lock);
SDL_Rect **getModes(void) { return m_ModeInfoList; }
Uint32 getSDLFlags(void) { return (sdlflags); }
private:
// bool SwitchToMode(XF86VidModeModeInfo *mode);
bool LoadLibraries(void);
bool m_Inited;
bool m_VideoResolutionChanged;
int m_NumVideoModes;
// XF86VidModeModeInfo **m_ModeInfoList;
SDL_Rect **m_ModeInfoList;
Uint32 sdlflags;
// Display *m_Display;
// int m_Screen;
};
extern CLnxVideoModes LinuxVideoMode;
#endif